Home | History | Annotate | Line # | Download | only in make
Makefile revision 1.66
      1 #	$NetBSD: Makefile,v 1.66 2020/01/19 19:42:32 riastradh 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 metachar.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 USE_META ?= yes
     17 .if ${USE_META:tl} != "no"
     18 SRCS+=	meta.c
     19 CPPFLAGS+= -DUSE_META
     20 USE_FILEMON ?= yes
     21 .if ${USE_FILEMON:tl} != "no"
     22 SRCS+=	filemon.c
     23 CPPFLAGS+= -DUSE_FILEMON
     24 .endif
     25 .endif
     26 
     27 .PATH:	${.CURDIR}/lst.lib
     28 SUBDIR.roff+=	PSD.doc
     29 .if make(obj) || make(clean)
     30 SUBDIR+= unit-tests
     31 .endif
     32 
     33 .include <bsd.prog.mk>
     34 .include <bsd.subdir.mk>
     35 
     36 CPPFLAGS+= -DMAKE_NATIVE
     37 COPTS.var.c += -Wno-cast-qual
     38 COPTS.job.c += -Wno-format-nonliteral
     39 COPTS.parse.c += -Wno-format-nonliteral
     40 COPTS.var.c += -Wno-format-nonliteral
     41 
     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 
     50 COPTS.arch.c+=	${GCC_NO_FORMAT_TRUNCATION}
     51 COPTS.dir.c+=	${GCC_NO_FORMAT_TRUNCATION}
     52 COPTS.main.c+=	${GCC_NO_FORMAT_TRUNCATION} ${GCC_NO_STRINGOP_TRUNCATION}
     53 COPTS.meta.c+=	${GCC_NO_FORMAT_TRUNCATION}
     54 COPTS.parse.c+=	${GCC_NO_FORMAT_TRUNCATION}
     55 
     56 # A simple unit-test driver to help catch regressions
     57 accept test:
     58 	cd ${.CURDIR}/unit-tests && MAKEFLAGS= ${.MAKE} -r -m / TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET}
     59