?? makefile
字號:
# Makefile for libGiST, GiST test programs## Generalized Search Tree# LINKER = purify -collector=/usr/sww/lib/gcc-lib/hppa1.1-hp-hpux9.03/2.7.2/ld -cache-dir=/tmp/jmhLINKER = g++# LINKER = c++export LINKERINCS = -I/usr/sww/lib/g++-include -I/usr/include/g++-3 -I../libGiST -I../../inc# INCS = -I../libGiSTexport INCSLDFLAGS = -L../libGiSTexport LDFLAGSLIBS = -lGiST ../../libfastdb_r.a -lpthread# LIBS = -lGiSTexport LIBSCC = g++# CC = CCexport CCDEFINES = -DUNIXexport DEFINESCFLAGS = -g -Wall -Wno-unused $(DEFINES)# CFLAGS = -g $(DEFINES)export CFLAGS# we recommend bison and flex for this code.# if you want to use yacc and lex, you'll need to muck with the# Makefiles a bit.LEX = flexexport LEXLEXFLAGS = -Itexport LEXFLAGSYACC = bisonexport YACCYACCFLAGS = -dvexport YACCFLAGSall: LIBGIST RTREE BTREE RSTREELIBGIST: cd libGiST ; $(MAKE) RTREE: libGiST/libGiST.a cd RTree; $(MAKE)BTREE: libGiST/libGiST.a cd BTree; $(MAKE)RSTREE: libGiST/libGiST.a cd RSTree; $(MAKE)archive: $(MAKE) clean cd .. ; tar cf GiST.tar GiST ; gzip -f GiST.tar ; rm GiST.zip ; zip -pr GiST GiST/* ; cd GiSTclean: cd libGiST ; $(MAKE) clean cd BTree; $(MAKE) clean cd RSTree; $(MAKE) clean cd RTree; $(MAKE) cleandepend: cd libGiST ; $(MAKE) depend cd BTree; $(MAKE) depend cd RSTree; $(MAKE) depend cd RTree; $(MAKE) dependtags: etags */*.{cpp,y,l,h}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -