makefile

来自「华清远见应用培训班例程源码」· 代码 · 共 23 行

TXT
23
字号
CC	= $(CROSS_COMPILE)gccAS	= $(CROSS_COMPILE)asLD	= $(CROSS_COMPILE)ldRM	= rmCFLAGS	= -Wall -D_DEBUG_ -gLDFLAGS	= -staticTARGETS	= hello test1 test2 test3 test4 test5 test6 test7 test8 \	  test9 test10 test11 test12 test13 test14 test15all: $(TARGETS)clean:	$(RM) -f *.o *~ $(TARGETS)hello: hello.o	$(LD) -o hello hello.ohello.o: hello.s	$(AS) -o hello.o hello.s

⌨️ 快捷键说明

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