makefile

来自「基于组件方式开发操作系统的OSKIT源代码」· 代码 · 共 24 行

TXT
24
字号
#	@(#)Makefile	8.15 (Berkeley) 7/28/94PROG=	dbtestOBJS=	dbtest.o strerror.o# Uncomment the STAT line get hash and btree statistical use info.  This# also forces ld to load the btree debug functions for use by gdb, which# is useful.  The db library has to be compiled with -DSTATISTICS as well.INC=	-I${PORTDIR}/include -I${PORTDIR}OORG=	-g#STAT=	-DSTATISTICSCFLAGS=	-D__DBINTERFACE_PRIVATE -DDEBUG ${STAT} ${OORG} ${INC}dbtest: ${OBJS} ${PORTDIR}/libdb.a	${CC} -o ${.TARGET} ${OBJS} ${PORTDIR}/libdb.astrerror.o: ${PORTDIR}/clib/strerror.c	${CC} -c ${PORTDIR}/clib/strerror.cclean:	rm -f dbtest.core gmon.out ${OBJS} ${PROG} t1 t2 t3${OBJS}: Makefile

⌨️ 快捷键说明

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