1 Star 0 Fork 3

zeroway/btest

forked from Kenneth-Lee-2012/btest 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 938 Bytes
一键复制 编辑 原始数据 按行查看 历史
ALL=cs amdahl ci testpf testpf2
CLS=`getconf LEVEL1_DCACHE_LINESIZE`
all: $(ALL)
testpf2: pftest2.o misc.o
$(CC) -O0 -Wall $^ -o $@
testpf: pftest.o misc.o
$(CC) $^ -o $@
cs: cs_test.o task.o misc.o queue.o cal.o
$(CC) $^ -g -lpthread -o $@
amdahl: amdahl.o task.o misc.o cal.o mcs_spinlock.o
$(CC) $^ -g -lpthread -o $@
ci: ci.o misc.o cal.o
$(CC) $^ -g -o $@
cs_test.o: cs_test.c misc.h task.h queue.h cal.h
task.o: task.c task.h misc.h
misc.o: misc.c misc.h
cal.o: cal.c
amdahl.o: amdahl.c misc.h task.h mcs_spinlock.h
ci.o: ci.c misc.h cal.h
mcs_spinlock.o: mcs_spinlock.c mcs_spinlock.h
pftest.o: pftest.c misc.h
$(CC) -c $< -DCACHE_LINE_SIZE=$(CLS) -DPREFETCH -o $@
pftest2.o: pftest2.c misc.h
%.o: %.c
$(CC) -c -g -Wall -D_GNU_SOURCE $< -o $@
.PHONY: clean cleanall tags
clean:
rm -f *.o $(ALL)
cleanall:
rm -f *.o $(ALL) tags cscope.out core
sudo rm -f perf perf.data
tags:
ctags -R --extra=f
cscope -Rb
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/zeroway/btest.git
git@gitee.com:zeroway/btest.git
zeroway
btest
btest
master

搜索帮助