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

📄 makefile

📁 R+树的c实现源码
💻
字号:
# @(#)Makefile	1.13 3/13/84FLAGS= -g3 -OSRC= main.c index.c rectangl.c printsta.c clock.c allocate.c error.c\        pack.c insert.c splitnod.c partitio.c node.c page.c func.cHEADERS= options.h macros.h index.h assert.h  partitio.h global.hALL= $(SRC) $(HEADERS)OBJ= main.o index.o rectangl.o printsta.o clock.o allocate.o error.o\        pack.o insert.o splitnod.o partitio.o node.o page.o func.o$(OBJ): $(HEADERS).c.o: $(HEADERS)	cc -c $(FLAGS) $*.crpt: $(OBJ) 	/bin/rm -f rpt	cc $(FLAGS) $(OBJ) $(OBJLIN) -lm -o rptedit:	vi $(SRC)clean:	rm -f *.o core tagstags: $(SRC)	ctags *.clint:	rm -f lint.out	lint *.c > lint.outc:	/bin/rm -f core

⌨️ 快捷键说明

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