Home | History | Annotate | Line # | Download | only in make
Makefile revision 1.15
      1 #	$NetBSD: Makefile,v 1.15 1997/07/01 21:17:00 christos Exp $
      2 #	@(#)Makefile	5.2 (Berkeley) 12/28/90
      3 
      4 WARNS=1
      5 CFLAGS+= -I${.CURDIR}
      6 PROG=	make
      7 SRCS=	arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
      8 	make.c parse.c str.c suff.c targ.c var.c util.c
      9 SRCS+=	lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
     10 	lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \
     11 	lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \
     12 	lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \
     13 	lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
     14 .PATH:	${.CURDIR}/lst.lib
     15 
     16 .if make(install)
     17 SUBDIR+= PSD.doc
     18 .endif
     19 
     20 .include <bsd.prog.mk>
     21