Home | History | Annotate | Line # | Download | only in libcompat
Makefile revision 1.18
      1  1.18     lukem #	$NetBSD: Makefile,v 1.18 1997/10/22 23:33:05 lukem Exp $
      2   1.3   mycroft 
      3   1.3   mycroft LIB=	compat
      4  1.18     lukem CPPFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS
      5  1.11   mycroft AINC=	-I${.CURDIR}/../libc/arch/${MACHINE_ARCH}
      6  1.11   mycroft .if defined(DESTDIR)
      7  1.11   mycroft AINC+=	-nostdinc -idirafter ${DESTDIR}/usr/include
      8  1.11   mycroft .endif
      9   1.4        pk NOPIC=	nopic
     10   1.5       cgd 
     11   1.7       cgd .PATH:	${.CURDIR}/4.1/${MACHINE_ARCH} ${.CURDIR}/4.1 \
     12   1.5       cgd 	${.CURDIR}/4.3/${MACHINE_ARCH} ${.CURDIR}/4.3 \
     13   1.7       cgd 	${.CURDIR}/4.4/${MACHINE_ARCH} ${.CURDIR}/4.4 \
     14   1.5       cgd 	${.CURDIR}/regexp
     15   1.5       cgd 
     16   1.5       cgd # compat 4.1 sources
     17  1.10       cgd # missing: getpw.c tell.c vlimit.c vtimes.c
     18  1.10       cgd SRCS=	gtty.c ftime.c stty.c
     19   1.7       cgd 
     20   1.7       cgd .if (${MACHINE} == "vax")
     21   1.7       cgd # missing: (for vax) reset.s
     22   1.7       cgd .endif
     23   1.7       cgd 
     24  1.13       cgd MAN+=	ftime.3 getpw.3 stty.3 vlimit.3 vtimes.3
     25   1.7       cgd 
     26   1.7       cgd MLINKS+=stty.3 gtty.3
     27   1.5       cgd 
     28   1.5       cgd # compat 4.3 sources
     29   1.7       cgd # missing: ecvt.c gcvt.c sibuf.c sobuf.c strout.c
     30   1.7       cgd SRCS+=	cfree.c lsearch.c regex.c rexec.c
     31   1.7       cgd SRCS+=	insque.c remque.c
     32   1.5       cgd 
     33   1.7       cgd # missing: ecvt.0
     34  1.13       cgd MAN+=	insque.3 lsearch.3 re_comp.3 rexec.3
     35   1.7       cgd 
     36   1.7       cgd #MLINKS+=ecvt.3 fcvt.3 ecvt.3 gcvt.3
     37   1.5       cgd MLINKS+=insque.3 remque.3
     38   1.9       jtc MLINKS+=lsearch.3 lfind.3
     39   1.7       cgd MLINKS+=re_comp.3 re_exec.3
     40   1.7       cgd 
     41   1.8       jtc 
     42   1.7       cgd # compat 4.4 sources
     43  1.17  christos SRCS+=	cuserid.c
     44  1.17  christos MAN+=	cuserid.3
     45   1.8       jtc 
     46   1.5       cgd 
     47   1.5       cgd # regexp sources
     48   1.5       cgd SRCS+=	regerror.c regexp.c regsub.c
     49  1.13       cgd MAN+=	regexp.3
     50   1.1       cgd 
     51  1.14       jtc .include <bsd.lib.mk>
     52