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