⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 FastDb是高效的内存数据库系统
💻
字号:
#	  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 + -