brack.make
来自「标准的GP源代码,由Andy Singleton维护」· MAKE 代码 · 共 71 行
MAKE
71 行
############################################################################## Project GP brack program using MODIFIED gpquick-2.1,# using UCL GNU/Unix/etc $Revision: 1.4 $ # # Author W.Langdon## Created 22 September 1995, based upon list.make Revision: 1.14# # Modifications: ## Module: brack.make## Description: ## FLAGS: -DTWOD?# -DDEBUG, if debugging messages should pop up?## Notes ensure pch.h contain #define UNIX# chrome.h #define MULTREE#############################################################################NAME = GPbrackOBJS = gp.o brack.o test.o stats.o pareto.o chrome.o primitiv.o Primitives.o selector.o LIBS = -lg++ -lmCC = gccCOMPILE = $(CC) -c $(CFLAGS)CFLAGS = -ansi -O2 -Wall -Winline#CFLAGS = -ansi -O2 -Wno-import -W -Wimplicit -Wreturn-type -Wunused\#-Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts \#-Wuninitialized -Wparentheses -Wtemplate-debugging\#-Winline #CFLAGS = -pg -O2 -fkeep-inline-functions -ansi -g -WallLINK = $(CC) -o LDFLAGS = -Wall -g#LDFLAGS = -pg -g -static$(NAME):$(OBJS) $(LINK) $(NAME) $(LDFLAGS) $(OBJS) $(LIBS)#C++ source filesgp.o: gp.cc pch.h chrome.h selector.h brack.h primitiv.h Primitives.h gp.h test.h $(COMPILE) gp.ccbrack.o: brack.cc pch.h chrome.h selector.h brack.h primitiv.h Primitives.h gp.h test.h $(COMPILE) brack.cctest.o: test.cc pch.h chrome.h selector.h brack.h test.h Primitives.h gp.h test.run.cc test.fitness.cc $(COMPILE) test.ccstats.o: stats.cc pch.h chrome.h selector.h brack.h gp.h $(COMPILE) stats.ccpareto.o: pareto.cc pch.h chrome.h selector.h brack.h Primitives.h gp.h $(COMPILE) pareto.ccchrome.o: chrome.cxx pch.h chrome.h selector.h brack.h $(COMPILE) chrome.cxxprimitiv.o: primitiv.cxx pch.h chrome.h selector.h brack.h primitiv.h $(COMPILE) primitiv.cxxPrimitives.o: Primitives.cc pch.h chrome.h selector.h brack.h Primitives.h gp.h $(COMPILE) Primitives.ccselector.o: selector.cxx pch.h selector.h $(COMPILE) selector.cxx
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?