xref: /dragonfly/lib/libcompat/Makefile (revision 65cc0652)
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: src/lib/libcompat/Makefile,v 1.19.2.1 2001/04/25 10:04:23 ru Exp $
3
4LIB=compat
5NOPIC=
6WARNS?=	2
7
8.PATH:	${.CURDIR}/4.1 ${.CURDIR}/4.3 ${.CURDIR}/4.4
9
10# compat 4.1 sources
11SRCS+=	ftime.c gtty.c stty.c
12
13MAN+=	4.1/ftime.3 4.1/stty.3
14
15MLINKS+=stty.3 gtty.3
16
17# compat 4.3 sources
18SRCS+=	re_comp.c rexec.c
19SRCS+=	insque.c remque.c
20
21MAN+=	4.3/insque.3 4.3/re_comp.3 4.3/rexec.3
22
23MLINKS+=insque.3 remque.3
24MLINKS+=re_comp.3 re_exec.3
25
26# compat 4.4 sources
27SRCS+=	cuserid.c
28MAN+=	4.4/cuserid.3
29
30.include <bsd.lib.mk>
31