📄 makefile
字号:
# Makefile for cbook/10-Modular-Development/programs# Created by the ExportAll facility# ***************************************************************PROGRAMS = \ piglatin # ***************************************************************# Parameters to control Makefile operation# Note that the gccx command script must be definedCC = gccxCFLAGS = # ***************************************************************# Entry to bring the package up to dateall: $(PROGRAMS)# ***************************************************************# Standard entries to remove files from the directories# tidy -- eliminate unwanted files# scratch -- delete derived files in preparation for rebuildtidy: rm -f ,* .,* *~ core a.out graphics.psscratch: tidy rm -f *.o *.a $(PROGRAMS)# ***************************************************************# C compilationsscanner.o: scanner.c scanner.h $(CC) $(CFLAGS) -c scanner.cpiglatin.o: piglatin.c scanner.h $(CC) $(CFLAGS) -c piglatin.cpiglatin: piglatin.o scanner.o $(CC) $(CFLAGS) -o piglatin piglatin.o scanner.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -