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