Home | History | Annotate | Line # | Download | only in make
Makefile revision 1.64
      1 #	$NetBSD: Makefile,v 1.64 2019/12/18 07:37:19 maxv 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 .endif
     21 
     22 .PATH:	${.CURDIR}/lst.lib
     23 SUBDIR.roff+=	PSD.doc
     24 .if make(obj) || make(clean)
     25 SUBDIR+= unit-tests
     26 .endif
     27 
     28 .include <bsd.prog.mk>
     29 .include <bsd.subdir.mk>
     30 
     31 CPPFLAGS+= -DMAKE_NATIVE
     32 COPTS.var.c += -Wno-cast-qual
     33 COPTS.job.c += -Wno-format-nonliteral
     34 COPTS.parse.c += -Wno-format-nonliteral
     35 COPTS.var.c += -Wno-format-nonliteral
     36 
     37 .ifdef TOOLDIR
     38 # this is a native netbsd build, 
     39 # use libutil rather than the local emalloc etc.
     40 CPPFLAGS+= -DUSE_EMALLOC
     41 LDADD+=-lutil
     42 DPADD+=${LIBUTIL}
     43 .endif
     44 
     45 COPTS.arch.c+=	${GCC_NO_FORMAT_TRUNCATION}
     46 COPTS.dir.c+=	${GCC_NO_FORMAT_TRUNCATION}
     47 COPTS.main.c+=	${GCC_NO_FORMAT_TRUNCATION} ${GCC_NO_STRINGOP_TRUNCATION}
     48 COPTS.meta.c+=	${GCC_NO_FORMAT_TRUNCATION}
     49 COPTS.parse.c+=	${GCC_NO_FORMAT_TRUNCATION}
     50 
     51 # A simple unit-test driver to help catch regressions
     52 accept test:
     53 	cd ${.CURDIR}/unit-tests && MAKEFLAGS= ${.MAKE} -r -m / TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET}
     54