antprob.make
来自「标准的GP源代码,由Andy Singleton维护」· MAKE 代码 · 共 47 行
MAKE
47 行
############################################################################## Project GP antprob program using MODIFIED gpquick-2.1,# using UCL GNU/Unix/etc# # Author W.Langdon## Created 21 Nov 1995# # Module: antprob.make ## Version: $Revision: 1.3 $## Notes ensure pch.h contain #define UNIX# chrome.h does not #define MULTREE, PARETO, TRACE#############################################################################NAME = antprobOBJS = antprob.o chrome.o primitiv.o selector.oLIBS = -lg++ -lmCC = gccCOMPILE = $(CC) -c $(CFLAGS)CFLAGS = -ansi -g -Wall#CFLAGS = -O2 -fkeep-inline-functions -ansi -g -WallLINK = $(CC) -o LDFLAGS = -g -Wall#LDFLAGS = -static$(NAME):$(OBJS) $(LINK) $(NAME) $(OBJS) $(LDFLAGS) $(LIBS)#C++ source filesantprob.o: antprob.cxx pch.h chrome.h antprob.h selector.h primitiv.h $(COMPILE) antprob.cxxchrome.o: chrome.cxx pch.h chrome.h antprob.h selector.h $(COMPILE) chrome.cxxprimitiv.o: primitiv.cxx pch.h chrome.h antprob.h selector.h primitiv.h $(COMPILE) primitiv.cxxselector.o: selector.cxx pch.h selector.h $(COMPILE) selector.cxx
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?