1994-12-16 13:01:23 +03:00
|
|
|
# $Id: Makefile,v 1.12 1994/12/16 10:01:23 mycroft Exp $
|
1993-08-02 21:48:44 +04:00
|
|
|
|
|
|
|
LIB= compat
|
1994-01-15 22:31:32 +03:00
|
|
|
CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS
|
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
|
1993-10-06 00:55:45 +03:00
|
|
|
NOPIC= nopic
|
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
|
|
|
|
|
|
|
|
MAN3+= ftime.0 getpw.0 stty.0 vlimit.0 vtimes.0
|
|
|
|
|
|
|
|
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
|
|
|
|
SRCS+= cfree.c lsearch.c regex.c rexec.c
|
1994-01-15 22:31:32 +03:00
|
|
|
|
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-01-15 22:31:32 +03:00
|
|
|
|
1994-05-06 10:49:32 +04:00
|
|
|
# missing: ecvt.0
|
|
|
|
MAN3+= insque.0 lsearch.0 re_comp.0 rexec.0
|
|
|
|
|
|
|
|
#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
|
|
|
|
SRCS+= cuserid.c
|
1994-05-19 10:20:17 +04:00
|
|
|
MAN3+= cuserid.0
|
|
|
|
|
1994-01-15 22:31:32 +03:00
|
|
|
|
|
|
|
# regexp sources
|
|
|
|
SRCS+= regerror.c regexp.c regsub.c
|
|
|
|
MAN3+= regexp.0
|
|
|
|
|
1993-03-23 13:14:55 +03:00
|
|
|
.include <bsd.lib.mk>
|