makefile

来自「海量地形数据漫游系统,对于OPENGL开发人员具有一定的参考」· 代码 · 共 66 行

TXT
66
字号
################################################### $Id: Makefile 31 2005-08-28 11:24:07Z peciva $TARGET=../iengine################################################### setupifndef CXXFLAGS ifdef RELEASE  CPPFLAGS = -O6 -I. -I`soqt-config --cppflags` else  CPPFLAGS = -DDEBUG -g -I. -I`soqt-config --cppflags` endifendifLD = g++LDFLAGS = -g `soqt-config --ldflags` `soqt-config --libs`################################################### phony targets.PHONY: all clean depall: $(TARGET)dep: ../mkdep.exe	echo \# This file was generated using      >  Makefile.dep	echo \# make dep                           >> Makefile.dep	echo                                       >> Makefile.dep	../mkdep.exe -relative -I. *.cpp generators/*.cpp  >> Makefile.depclean:	$(RM) *~ *.~* generators/*~ generators/*.~* objects/*~ objects/*.~* misc/*~ misc/*.~*	$(RM) *.o generators/*.o objects/*.o misc/*.o	$(RM) *.log	$(RM) $(TARGET)	$(RM) ../*.tds################################################### final targetOBJ = Main.o TeHeightMap.o TePatch.o TeEngine.o \	generators/TeGenerator.o generators/TeFaultFormation.o \	generators/TeLinearFilter.o \	objects/TeObject.o objects/TeEngineExplorer.o \	misc/SoPerfGraph.o misc/SoGuiGameViewer.o$(TARGET): $(OBJ)	$(LD) $^ $(LDFLAGS) -o $(TARGET)################################################### common rules################################################### dependenciesinclude Makefile.dep################################################### utilities../mkdep.exe: ../mkdep.c	$(CC) -DHAVE_SYS_FCNTL_H -DWITH_DEBUG -o $@ $^

⌨️ 快捷键说明

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