freebsd-dev/lib/libcompat/Makefile

52 lines
1.2 KiB
Makefile
Raw Normal View History

1994-05-27 05:00:24 +00:00
# @(#)Makefile 8.1 (Berkeley) 6/4/93
# $FreeBSD$
1994-05-27 05:00:24 +00:00
LIB=compat
1997-04-04 20:10:53 +00:00
CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS -I${.CURDIR}/../libc/locale
AINC= -I${.CURDIR}/../libc/${MACHINE_ARCH}
NOPIC=
1994-05-27 05:00:24 +00:00
.PATH: ${.CURDIR}/4.1/${MACHINE_ARCH} ${.CURDIR}/4.1 \
${.CURDIR}/4.3/${MACHINE_ARCH} ${.CURDIR}/4.3 \
${.CURDIR}/4.4/${MACHINE_ARCH} ${.CURDIR}/4.4 \
${.CURDIR}/regexp
1994-05-27 05:00:24 +00:00
# compat 4.1 sources
# XXX MISSING: tell.c
1996-10-09 16:12:38 +00:00
SRCS+= ascftime.c cftime.c ftime.c getpw.c gtty.c stty.c
1994-05-27 05:00:24 +00:00
MAN3+= 4.1/ftime.3 4.1/getpw.3 4.1/stty.3
MAN3+= 4.1/cftime.3
1994-05-27 05:00:24 +00:00
MLINKS+=stty.3 gtty.3
MLINKS+=cftime.3 ascftime.3
1994-05-27 05:00:24 +00:00
# compat 4.3 sources
1994-05-27 11:01:30 +00:00
# XXX MISSING: ecvt.c gcvt.c sibuf.c sobuf.c strout.c
SRCS+= cfree.c lsearch.c regex.c rexec.c
1994-05-27 05:00:24 +00:00
SRCS+= insque.c remque.c
1994-05-27 11:01:30 +00:00
# XXX MISSING: ecvt.0
1995-11-29 21:39:57 +00:00
MAN3+= 4.3/cfree.3 4.3/insque.3 4.3/lsearch.3 4.3/re_comp.3 4.3/rexec.3
1994-05-27 05:00:24 +00:00
1994-05-27 11:01:30 +00:00
# XXX MISSING: ecvt.3, so can't MLINK
#MLINKS+=ecvt.3 fcvt.3 ecvt.3 gcvt.3
1994-05-27 05:00:24 +00:00
MLINKS+=insque.3 remque.3
MLINKS+=re_comp.3 re_exec.3
MLINKS+=lsearch.3 lfind.3
1994-05-27 05:00:24 +00:00
# compat 4.4 sources
SRCS+= cuserid.c
MAN3+= 4.4/cuserid.3
1994-05-27 05:00:24 +00:00
# regexp sources
SRCS+= regerror.c regexp.c regsub.c
1994-08-05 01:42:04 +00:00
MAN3+= regexp/regexp.3
1994-05-27 05:00:24 +00:00
# XXX name clash with libc
# MLINKS+=regexp.3 regcomp.3 regexp.3 regexec.3 regexp.3 regerror.3
MLINKS+=regexp.3 regsub.3
1994-05-27 05:00:24 +00:00
.include <bsd.lib.mk>