makefile

来自「linux下用PCMCIA无线网卡虚拟无线AP的程序源码」· 代码 · 共 75 行

TXT
75
字号
TESTDIR=../include $(TESTDIR)/Rules.makTARGETS=test_pwd test_pwd_glibcTARGETS+=test_grp test_grp_glibcTARGETS+=test_pwd_diff test_grp_diffall: $(TARGETS)test_pwd: test_pwd.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC)	-@ echo "-------"	-@ echo " "	-@ echo "Compiling vs uClibc: "	-@ echo " "	$(CC) $(CFLAGS) -c $< -o $@.o	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)	$(STRIPTOOL) -x -R .note -R .comment $@	-./$@ 2>&1 >test_pwd.out	-@ echo " "test_pwd_glibc: test_pwd.c Makefile	-@ echo "-------"	-@ echo " "	-@ echo "Compiling vs GNU libc: "	-@ echo " "	$(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o	$(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@	$(STRIPTOOL) -x -R .note -R .comment $@	-./$@ 2>&1 >test_pwd_glibc.out	-@ echo " "test_grp: test_grp.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC)	-@ echo "-------"	-@ echo " "	-@ echo "Compiling vs uClibc: "	-@ echo " "	$(CC) $(CFLAGS) -c $< -o $@.o	$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)	$(STRIPTOOL) -x -R .note -R .comment $@	-./$@ 2>&1 >test_grp.out	-@ echo " "test_grp_glibc: test_grp.c Makefile	-@ echo "-------"	-@ echo " "	-@ echo "Compiling vs GNU libc: "	-@ echo " "	$(HOST_CC) $(GLIBC_CFLAGS) -c $< -o $@.o	$(HOST_CC) $(GLIBC_LDFLAGS) $@.o -o $@	$(STRIPTOOL) -x -R .note -R .comment $@	-./$@ 2>&1 >test_grp_glibc.out	-@ echo " "test_pwd_diff: test_pwd_glibc test_pwd	-@ echo "-------"	-@ echo " "	-@ echo "Diffing output: "	-@ echo " "	-diff -u test_pwd_glibc.out test_pwd.out	-@ echo " "test_grp_diff: test_grp_glibc test_grp	-@ echo "-------"	-@ echo " "	-@ echo "Diffing output: "	-@ echo " "	-diff -u test_grp_glibc.out test_grp.out	-@ echo " "clean:	rm -f *.[oa] *~ core $(TARGETS) *.out

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?