NetBSD/lib/libcompat/Makefile

57 lines
1.1 KiB
Makefile
Raw Normal View History

1994-12-22 12:44:45 +03:00
# $NetBSD: Makefile,v 1.13 1994/12/22 09:49:15 cgd Exp $
LIB= compat
CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS
AINC= -I${.CURDIR}/../libc/arch/${MACHINE_ARCH}
.if defined(DESTDIR)
AINC+= -nostdinc -idirafter ${DESTDIR}/usr/include
.endif
1993-10-06 00:55:45 +03:00
NOPIC= nopic
1994-05-06 10:49:32 +04:00
.PATH: ${.CURDIR}/4.1/${MACHINE_ARCH} ${.CURDIR}/4.1 \
${.CURDIR}/4.3/${MACHINE_ARCH} ${.CURDIR}/4.3 \
1994-05-06 10:49:32 +04:00
${.CURDIR}/4.4/${MACHINE_ARCH} ${.CURDIR}/4.4 \
${.CURDIR}/regexp
# compat 4.1 sources
# 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
1994-12-22 12:44:45 +03:00
MAN+= ftime.3 getpw.3 stty.3 vlimit.3 vtimes.3
1994-05-06 10:49:32 +04:00
MLINKS+=stty.3 gtty.3
# compat 4.3 sources
1994-05-06 10:49:32 +04:00
# missing: ecvt.c gcvt.c sibuf.c sobuf.c strout.c
SRCS+= cfree.c lsearch.c regex.c rexec.c
1994-05-06 10:49:32 +04:00
.if (${MACHINE_ARCH} == "m68k")
1994-12-16 13:01:23 +03:00
SRCS+= insque.S remque.S
1994-05-06 10:49:32 +04:00
.else
SRCS+= insque.c remque.c
.endif
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
MLINKS+=insque.3 remque.3
MLINKS+=lsearch.3 lfind.3
1994-05-06 10:49:32 +04:00
MLINKS+=re_comp.3 re_exec.3
1994-05-06 10:49:32 +04:00
# compat 4.4 sources
SRCS+= cuserid.c
1994-12-22 12:44:45 +03:00
MAN+= cuserid.3
# regexp sources
SRCS+= regerror.c regexp.c regsub.c
1994-12-22 12:44:45 +03:00
MAN+= regexp.3
1994-12-22 12:44:45 +03:00
<bsd.lib.m