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