📄 makefile
字号:
# Makefile for GiST test program## Generalized Search TreePROGRAM = RTreeSRCS = command.cpp gram.y scan.l RTentry.cpp RTnode.cpp RTpredicate.cpp OBJS = command.o gram.tab.o scan.o RTentry.o RTnode.o RTpredicate.o DEST = .$(PROGRAM): $(OBJS) ../libGiST .depend $(LINKER) -o $(PROGRAM) $(LDFLAGS) $(OBJS) $(LIBS).depend: $(MAKE) depend touch .dependgram.tab.cpp: gram.y $(YACC) $(YACCFLAGS) gram.y mv gram.tab.c gram.tab.cppscan.cpp: scan.l $(LEX) $(LEXFLAGS) scan.l >scan.cpp%.o: %.cpp $(CC) -c $(CFLAGS) $(INCS) $*.cppclean: rm -f $(OBJS) $(PROGRAM) gram.tab.cpp scan.cpp gram.tab.h gram.output *~ #*# *pure* TAGSdepend: makedepend $(DEFINES) $(INCS) $(SRCS)install: $(PROGRAM) echo Installing $(PROGRAM) in $(DEST) install -s $(PROGRAM) $(DEST)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -