?? makefile
字號:
# Makefile for the symbolic regression probleminclude ../Makefile.iniTARGET = symOBJS = symbreg.oCPPFLAGS = $(OVERALLCPPFLAGS) -I$(GPINCLUDE)LDFLAGS = $(OVERALLLDFLAGS) -L$(GPLIB) -lgp -lm # Implicit rule how to compile.cc.o: $(CCC) $(CPPFLAGS) -c $<all: $(TARGET)clean: rm -f $(OBJS) result.* *~superclean: clean rm -f $(TARGET)strip: strip $(OBJS) $(TARGET)$(TARGET) : $(OBJS) $(GPLIBFILE) $(CCC) -o $(TARGET) $(OBJS) $(LDFLAGS) $(LIBS)# File dependenciessymbreg.o: symbreg.cc ../include/gpconfig.h ../include/gp.h
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -