xref: /csrg-svn/old/libndbm/Makefile (revision 46497)
1#	@(#)Makefile	5.10 (Berkeley) 02/21/91
2
3LIB=	dbm
4CFLAGS+=-I${.CURDIR}
5SRCS=	dbm.c ndbm.c
6MAN3=	dbm.0 ndbm.0
7MLINKS+=dbm.3 dbminit.3 dbm.3 delete.3 dbm.3 fetch.3 dbm.3 firstkey.3 \
8	dbm.3 nextkey.3 dbm.3 store.3
9MLINKS+=ndbm.3 dbm_clearerr.3 ndbm.3 dbm_close.3 ndbm.3 dbm_delete.3 \
10	ndbm.3 dbm_error.3 ndbm.3 dbm_fetch.3 ndbm.3 dbm_firstkey.3 \
11	ndbm.3 dbm_nextkey.3 ndbm.3 dbm_open.3 ndbm.3 dbm_store.3
12
13beforeinstall:
14	install -c -o ${BINOWN} -g ${BINGRP} -m ${MANMODE} ${.CURDIR}/dbm.h \
15	    ${DESTDIR}/usr/include/dbm.h
16
17.include <bsd.lib.mk>
18