?? makefile
字號:
# Makefile for cbook/08-Random-Numbers/programs# Created by the ExportAll facility# ***************************************************************PROGRAMS = \ randtest \ cointest \ dicetest \ craps # ***************************************************************# 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 compilationsrandtest.o: randtest.c $(CC) $(CFLAGS) -c randtest.ccointest.o: cointest.c $(CC) $(CFLAGS) -c cointest.cdicetest.o: dicetest.c $(CC) $(CFLAGS) -c dicetest.ccraps.o: craps.c $(CC) $(CFLAGS) -c craps.crandtest: randtest.o $(CC) $(CFLAGS) -o randtest randtest.ocointest: cointest.o $(CC) $(CFLAGS) -o cointest cointest.odicetest: dicetest.o $(CC) $(CFLAGS) -o dicetest dicetest.ocraps: craps.o $(CC) $(CFLAGS) -o craps craps.o
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -