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