makefile

来自「R+树的c实现源码」· 代码 · 共 40 行

TXT
40
字号
# @(#)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 + =
减小字号Ctrl + -
显示快捷键?