xref: /netbsd/usr.bin/make/Makefile (revision 6550d01e)
1#	$NetBSD: Makefile,v 1.51 2010/09/13 15:36:57 sjg Exp $
2#	@(#)Makefile	5.2 (Berkeley) 12/28/90
3
4PROG=	make
5SRCS=	arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
6	make.c parse.c str.c suff.c targ.c trace.c var.c util.c
7SRCS+=  strlist.c
8SRCS+=  make_malloc.c
9SRCS+=	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
14SRCS += lstPrev.c
15
16# let people experiment for a bit
17USE_META ?= no
18.if ${USE_META:tl} != "no"
19SRCS+=	meta.c
20CPPFLAGS+= -DUSE_META
21FILEMON_H ?= ${.CURDIR:H:H}/sys/dev/filemon/filemon.h
22.if exists(${FILEMON_H}) && ${FILEMON_H:T} == "filemon.h"
23COPTS.meta.c += -DHAVE_FILEMON_H -I${FILEMON_H:H}
24.endif
25.endif
26
27.PATH:	${.CURDIR}/lst.lib
28.if make(install)
29SUBDIR=	PSD.doc
30.endif
31.if make(obj) || make(clean)
32SUBDIR+= unit-tests
33.endif
34
35.include <bsd.prog.mk>
36.include <bsd.subdir.mk>
37
38CPPFLAGS+= -DMAKE_NATIVE
39COPTS.var.c+= -Wno-cast-qual
40
41.ifdef TOOLDIR
42# this is a native netbsd build,
43# use libutil rather than the local emalloc etc.
44CPPFLAGS+= -DUSE_EMALLOC
45LDADD+=-lutil
46DPADD+=${LIBUTIL}
47.endif
48
49# A simple unit-test driver to help catch regressions
50accept test:
51	cd ${.CURDIR}/unit-tests && ${.MAKE} -r -m / TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET}
52