2000-02-19 21:51:30 +03:00
|
|
|
# $NetBSD: Makefile,v 1.25 2000/02/19 18:51:30 mycroft Exp $
|
1993-08-02 21:48:44 +04:00
|
|
|
|
|
|
|
LIB= compat
|
1998-09-15 00:25:02 +04:00
|
|
|
CPPFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS -D__LIBCOMPAT_SOURCE__
|
1994-07-06 08:08:28 +04:00
|
|
|
AINC= -I${.CURDIR}/../libc/arch/${MACHINE_ARCH}
|
|
|
|
.if defined(DESTDIR)
|
|
|
|
AINC+= -nostdinc -idirafter ${DESTDIR}/usr/include
|
|
|
|
.endif
|
1994-01-15 22:31:32 +03:00
|
|
|
|
1994-05-06 10:49:32 +04:00
|
|
|
.PATH: ${.CURDIR}/4.1/${MACHINE_ARCH} ${.CURDIR}/4.1 \
|
1994-01-15 22:31:32 +03:00
|
|
|
${.CURDIR}/4.3/${MACHINE_ARCH} ${.CURDIR}/4.3 \
|
1994-05-06 10:49:32 +04:00
|
|
|
${.CURDIR}/4.4/${MACHINE_ARCH} ${.CURDIR}/4.4 \
|
1994-01-15 22:31:32 +03:00
|
|
|
${.CURDIR}/regexp
|
|
|
|
|
|
|
|
# compat 4.1 sources
|
1994-05-21 09:20:25 +04:00
|
|
|
# missing: getpw.c tell.c vlimit.c vtimes.c
|
|
|
|
SRCS= gtty.c ftime.c stty.c
|
1994-05-06 10:49:32 +04:00
|
|
|
|
|
|
|
.if (${MACHINE} == "vax")
|
|
|
|
# missing: (for vax) reset.s
|
|
|
|
.endif
|
|
|
|
|
1999-08-22 16:43:51 +04:00
|
|
|
MAN+= ftime.3 stty.3
|
1994-05-06 10:49:32 +04:00
|
|
|
|
|
|
|
MLINKS+=stty.3 gtty.3
|
1994-01-15 22:31:32 +03:00
|
|
|
|
|
|
|
# compat 4.3 sources
|
1994-05-06 10:49:32 +04:00
|
|
|
# missing: ecvt.c gcvt.c sibuf.c sobuf.c strout.c
|
1999-08-13 01:00:05 +04:00
|
|
|
SRCS+= cfree.c lsearch.c regex.c rexec.c
|
1998-03-19 20:51:04 +03:00
|
|
|
SRCS+= insque.c remque.c ruserpass.c
|
1994-01-15 22:31:32 +03:00
|
|
|
|
1994-05-06 10:49:32 +04:00
|
|
|
# missing: ecvt.0
|
1994-12-22 12:44:45 +03:00
|
|
|
MAN+= insque.3 lsearch.3 re_comp.3 rexec.3
|
1994-05-06 10:49:32 +04:00
|
|
|
|
|
|
|
#MLINKS+=ecvt.3 fcvt.3 ecvt.3 gcvt.3
|
1994-01-15 22:31:32 +03:00
|
|
|
MLINKS+=insque.3 remque.3
|
1994-05-19 10:23:50 +04:00
|
|
|
MLINKS+=lsearch.3 lfind.3
|
1994-05-06 10:49:32 +04:00
|
|
|
MLINKS+=re_comp.3 re_exec.3
|
|
|
|
|
1994-05-19 10:20:17 +04:00
|
|
|
|
1994-05-06 10:49:32 +04:00
|
|
|
# compat 4.4 sources
|
1997-10-20 19:49:39 +04:00
|
|
|
SRCS+= cuserid.c
|
|
|
|
MAN+= cuserid.3
|
1994-05-19 10:20:17 +04:00
|
|
|
|
1994-01-15 22:31:32 +03:00
|
|
|
|
|
|
|
# regexp sources
|
|
|
|
SRCS+= regerror.c regexp.c regsub.c
|
1994-12-22 12:44:45 +03:00
|
|
|
MAN+= regexp.3
|
1994-01-15 22:31:32 +03:00
|
|
|
|
1994-12-22 20:57:02 +03:00
|
|
|
.include <bsd.lib.mk>
|