?? makefile
字號:
## Compiler specification#CC = cc## C optimization, only one CFLAGS line should be uncommented# The -Xcpluscomm flags is required for the SGI cc compiler to recognize the C++# style comments ( // ) used in the code.##CFLAGS = -Xcpluscomm #CFLAGS = -Xcpluscomm -O#CFLAGS = -Xcpluscomm -O2#CFLAGS = -Xcpluscomm -O3#CFLAGS = -Xcpluscomm -n32#CFLAGS = -Xcpluscomm -O -n32 #CFLAGS = -Xcpluscomm -O2 -n32#CFLAGS = -Xcpluscomm -O3 -n32CFLAGS = -Xcpluscomm -g## By default, create ToyBoxFDTDbezhig.#ToyBoxFDTDbezhig: ToyBoxFDTDbezhig.o Makefile ${CC} ${CFLAGS} -o ToyBoxFDTDbezhig ToyBoxFDTDbezhig.o -lmToyBoxFDTDbezhig.o: ToyBoxFDTDbezhig.c Makefile ${CC} ${CFLAGS} -c ToyBoxFDTDbezhig.c## Type: make clean# to remove executables, core files, object files, et cetera#clean: rm -f ToyBoxFDTDbezhig *.o *~ core## Type: make cleandata# to remove only data files created by ToyBoxFDTDbezhig#cleandata: rm -f *.bob rm -f runlog rm -f bezhigStimulus.dat rm -f bezhigCenter.dat rm -f ToyBoxFDTDbezhig.viz
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -