makefile

来自「linux unix 入门代码上,是关于初级入门的,经典代码」· 代码 · 共 24 行

TXT
24
字号
# slkdfsdsfdCOMPILER=gcc -cLINKER=gccLINKOPT=-lmall: testinstall:	cp test /usr/local/bin/clean:	rm -f test *.otest: main.o link.o output.o	$(LINKER) $(LINKOPT) -o test  main.o link.o output.omain.o: main.c common.h link.h output.h	$(COMPILER) -o main.o main.c%.o: %.c common.h	$(COMPILER) $<

⌨️ 快捷键说明

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