Home | History | Annotate | Line # | Download | only in make
Makefile revision 1.28
      1  1.28       mrg #	$NetBSD: Makefile,v 1.28 2003/07/26 16:04:29 mrg Exp $
      2   1.8  christos #	@(#)Makefile	5.2 (Berkeley) 12/28/90
      3   1.1       cgd 
      4  1.18     lukem CPPFLAGS+= -I${.CURDIR}
      5   1.1       cgd PROG=	make
      6   1.4       cgd SRCS=	arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
      7  1.22  sommerfe 	make.c parse.c str.c suff.c targ.c trace.c var.c util.c 
      8   1.1       cgd SRCS+=	lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
      9   1.1       cgd 	lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \
     10   1.1       cgd 	lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \
     11   1.1       cgd 	lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \
     12   1.1       cgd 	lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
     13  1.14       gwr .PATH:	${.CURDIR}/lst.lib
     14  1.27  christos WARNS=3
     15  1.21        is WFORMAT= 1
     16   1.6       cgd .if make(install)
     17  1.16   mycroft SUBDIR=	PSD.doc
     18   1.5       cgd .endif
     19   1.1       cgd 
     20   1.1       cgd .include <bsd.prog.mk>
     21  1.16   mycroft .include <bsd.subdir.mk>
     22  1.24       sjg 
     23  1.24       sjg # provide a clue as to what we are using
     24  1.24       sjg BUILD_DATE!= date +%Y%m%d
     25  1.24       sjg MAKE_VERSION:= netbsd-${BUILD_DATE}
     26  1.24       sjg CPPFLAGS_main.o:= "-DMAKE_VERSION=\"${MAKE_VERSION}\""
     27  1.24       sjg CPPFLAGS+= ${CPPFLAGS_${.TARGET}}
     28  1.25        tv main.o:	${OBJS:Nmain.o} ${MAKEFILE}
     29  1.28       mrg COPTS.var.c+= -Wno-cast-qual
     30