?? makefile
字號:
# use the compiler call appropriate for your platformCC = gcc# note that ANSI-C is required to compile donlp2.c you may have# to add appropriate options in CFLAGS for your native cc or you may use# gcc# you may add or alter compiler options below -O3 means full optimization#due to stacksize limitations for large NX and NRESM you might be forced# to change o8para.hCFLAGS = -O3BASIS = *.hDRIVER = userfu.o user_eval.o OPTIMIZER = donlp2.o .c.o: $(CC) $(CFLAGS) -c $<exe : $(DRIVER) $(OPTIMIZER) $(CC) $(CFLAGS) $(DRIVER) $(OPTIMIZER) -o exe -lc -lmclean : rm -f *.oclean_total : clean rm -f exe *.pro *.mes core donlp2.o : donlp2.c $(BASIS)userfu.o : userfu.c $(BASIS)user_eval.o : user_eval.c $(BASIS)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -