Home | History | Annotate | Line # | Download | only in make
Makefile revision 1.51
      1 #	$NetBSD: Makefile,v 1.51 2010/09/13 15:36:57 sjg 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 
     41 .ifdef TOOLDIR
     42 # this is a native netbsd build, 
     43 # use libutil rather than the local emalloc etc.
     44 CPPFLAGS+= -DUSE_EMALLOC
     45 LDADD+=-lutil
     46 DPADD+=${LIBUTIL}
     47 .endif
     48 
     49 # A simple unit-test driver to help catch regressions
     50 accept test:
     51 	cd ${.CURDIR}/unit-tests && ${.MAKE} -r -m / TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET}
     52