Home | History | Annotate | Line # | Download | only in libcompat
Makefile revision 1.5
      1 #	$Id: Makefile,v 1.5 1994/01/15 19:31:32 cgd Exp $
      2 
      3 LIB=	compat
      4 CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS
      5 AINC=	-I${.CURDIR}/../libc/${MACHINE_ARCH}
      6 NOPIC=	nopic
      7 
      8 .PATH:  ${.CURDIR}/4.1/${MACHINE_ARCH} ${.CURDIR}/4.1 \
      9 	${.CURDIR}/4.3/${MACHINE_ARCH} ${.CURDIR}/4.3 \
     10 	${.CURDIR}/regexp
     11 
     12 # compat 4.1 sources
     13 SRCS+=	ftime.c
     14 
     15 # compat 4.3 sources
     16 SRCS+=	insque.c regex.c remque.c
     17 
     18 MAN3+=	insque.0
     19 
     20 MLINKS+=insque.3 remque.3
     21 
     22 # regexp sources
     23 SRCS+=	regerror.c regexp.c regsub.c
     24 
     25 MAN3+=	regexp.0
     26 
     27 MLINKS+=regexp.3 regcomp.3 regexp.3 regexec.3 regexp.3 regsub.3 \
     28 	regexp.3 regerror.3
     29 
     30 .include <bsd.lib.mk>
     31