📄 makefile
字号:
## TPR-tree - Index for continuously moving objects# July 2001 release, Aalborg University## Common Definitions #LINKER = g++INCS = -I../libGiST -I../libxfigLDFLAGS = -L../libGiST -L../libxfig LIBS = -lGiST -lxfigCC = g++CFLAGS = -O3 -Wno-deprecated $(DEFINES)# End of common definitions# DEFINES = -DUNIX -DPRINTING_OBJECTSPROGRAM = tprtreeSRCS = command.cpp sgram.cpp rtkey.cpp rtentry.cpp rtnode.cpp rtpredicate.cpp rt.cpp rtbulksort.cpp rtobserver.cpp rtvisualizer.cpp tprtree.cppOBJS = $(SRCS:.cpp=.o)DEST = .$(PROGRAM): .depend $(OBJS) ../libGiST ../libxfig $(LINKER) -o $(PROGRAM) $(LDFLAGS) $(OBJS) $(LIBS).depend: $(MAKE) depend touch .depend# There is some sensitive IEEE 754 math in rtoptimaltpbr that gets # screwed by the optimizerrtkey.o: rtkey.cpp $(CC) -c $(CFLAGS) -O0 $(INCS) $*.cpprtnode.o: rtnode.cpp $(CC) -c $(CFLAGS) -O0 $(INCS) $*.cpp%.o: %.cpp $(CC) -c $(CFLAGS) $(INCS) $*.cppdepend: makedepend $(DEFINES) $(INCS) $(SRCS)clean: rm -f *.o *~ *.bak .depend# DO NOT DELETE THIS LINE -- make depend depends on it.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -