list.make

来自「标准的GP源代码,由Andy Singleton维护」· MAKE 代码 · 共 77 行

MAKE
77
字号
##############################################################################       Project		GP list program using MODIFIED gpquick-2.1,# 			using UCL GNU/Unix/etc $Revision: 1.15 $ #	    #       Author		W.Langdon##	Created		24 January 1995, based upon queue2.make Revision: 1.4# 									   #	Modifications:  ##	Module:         list.make##	Description:          ##	FLAGS:     	-DTWOD?#			-DDEBUG, if debugging messages should pop up?##	Notes		ensure pch.h contain #define UNIX#			chrome.h #define MULTREE#############################################################################NAME 	= GPlistOBJS 	= gp.o  list.o  test.o stats.o  pareto.o  time.o trace.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 list.h primitiv.h Primitives.h time.h gp.h trace.h test.h	$(COMPILE) gp.cclist.o:	list.cc pch.h chrome.h selector.h list.h primitiv.h time.h Primitives.h gp.h trace.h test.h	$(COMPILE) list.cctest.o:	test.cc pch.h chrome.h selector.h list.h test.h Primitives.h time.h gp.h trace.h test.run.cc test.fitness.cc	$(COMPILE) test.ccstats.o:	stats.cc pch.h chrome.h selector.h list.h gp.h trace.h	$(COMPILE) stats.ccpareto.o:	pareto.cc pch.h chrome.h selector.h list.h Primitives.h time.h gp.h trace.h	$(COMPILE) pareto.cctime.o:		time.cc pch.h chrome.h selector.h list.h time.h gp.h trace.h 	$(COMPILE) time.cctrace.o:	trace.cc pch.h chrome.h selector.h list.h Primitives.h time.h gp.h trace.h 	$(COMPILE) trace.ccchrome.o:	chrome.cxx pch.h chrome.h selector.h list.h	$(COMPILE) chrome.cxxprimitiv.o:	primitiv.cxx pch.h chrome.h selector.h list.h time.h primitiv.h	$(COMPILE) primitiv.cxxPrimitives.o:	Primitives.cc pch.h chrome.h selector.h list.h Primitives.h time.h gp.h trace.h	$(COMPILE) Primitives.ccselector.o:	selector.cxx pch.h selector.h	$(COMPILE) selector.cxx

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?