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