2009-04-15 02:15:16 +04:00
|
|
|
# $NetBSD: Makefile,v 1.49 2009/04/14 22:15:23 lukem Exp $
|
1995-06-14 19:18:37 +04:00
|
|
|
# @(#)Makefile 5.2 (Berkeley) 12/28/90
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
PROG= make
|
1994-03-05 03:34:29 +03:00
|
|
|
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
|
2000-12-30 05:05:20 +03:00
|
|
|
make.c parse.c str.c suff.c targ.c trace.c var.c util.c
|
2008-12-21 01:41:53 +03:00
|
|
|
SRCS+= strlist.c
|
2009-01-24 14:59:39 +03:00
|
|
|
SRCS+= make_malloc.c
|
1993-03-21 12:45:37 +03:00
|
|
|
SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
|
|
|
|
lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \
|
|
|
|
lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \
|
|
|
|
lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \
|
|
|
|
lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
|
2006-10-26 00:05:59 +04:00
|
|
|
SRCS += lstPrev.c
|
|
|
|
|
1997-05-09 01:11:01 +04:00
|
|
|
.PATH: ${.CURDIR}/lst.lib
|
1994-06-30 09:33:30 +04:00
|
|
|
.if make(install)
|
1997-10-11 13:34:07 +04:00
|
|
|
SUBDIR= PSD.doc
|
1994-06-25 09:57:47 +04:00
|
|
|
.endif
|
2003-07-29 02:52:10 +04:00
|
|
|
.if make(obj) || make(clean)
|
|
|
|
SUBDIR+= unit-tests
|
|
|
|
.endif
|
1994-06-25 09:57:47 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.include <bsd.prog.mk>
|
1997-10-11 13:34:07 +04:00
|
|
|
.include <bsd.subdir.mk>
|
2001-06-09 09:17:51 +04:00
|
|
|
|
2009-03-20 23:48:00 +03:00
|
|
|
CPPFLAGS+= -DMAKE_NATIVE
|
2003-07-26 20:04:29 +04:00
|
|
|
COPTS.var.c+= -Wno-cast-qual
|
2003-07-29 02:52:10 +04:00
|
|
|
|
2006-11-02 02:48:20 +03:00
|
|
|
.ifdef TOOLDIR
|
|
|
|
# this is a native netbsd build,
|
|
|
|
# use libutil rather than the local emalloc etc.
|
2008-10-07 02:09:21 +04:00
|
|
|
CPPFLAGS+= -DUSE_EMALLOC
|
2006-08-26 22:17:41 +04:00
|
|
|
LDADD+=-lutil
|
|
|
|
DPADD+=${LIBUTIL}
|
2006-08-29 20:54:03 +04:00
|
|
|
.endif
|
2006-08-26 22:17:41 +04:00
|
|
|
|
2003-07-29 02:52:10 +04:00
|
|
|
# A simple unit-test driver to help catch regressions
|
|
|
|
accept test:
|
2004-02-15 22:05:45 +03:00
|
|
|
cd ${.CURDIR}/unit-tests && ${.MAKE:S,^./,${.CURDIR}/,} TEST_MAKE=${TEST_MAKE:U${.OBJDIR}/${PROG:T}} ${.TARGET}
|