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