xref: /freebsd/lib/libcompat/Makefile (revision 763ed733711a5bb66d39de4d0ed4bcaae77e2461)
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD$
3
4LIB=	compat
5CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS -I${.CURDIR}/../libc/locale
6NO_PIC=
7
8WARNS?=	0
9
10.PATH:	${.CURDIR}/4.1 ${.CURDIR}/4.3 ${.CURDIR}/4.4
11
12# compat 4.1 sources
13SRCS+=	ascftime.c cftime.c ftime.c getpw.c
14
15MAN+=	4.1/ftime.3 4.1/getpw.3
16MAN+=	4.1/cftime.3
17
18MLINKS+=cftime.3 ascftime.3
19
20# compat 4.3 sources
21SRCS+=	cfree.c re_comp.c rexec.c
22
23MAN+=	4.3/cfree.3 4.3/re_comp.3 4.3/rexec.3
24
25MLINKS+=re_comp.3 re_exec.3
26
27# compat 4.4 sources
28SRCS+=	cuserid.c
29
30MAN+=	4.4/cuserid.3
31
32.include <bsd.lib.mk>
33