summaryrefslogtreecommitdiff
path: root/devel/bmake/files/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'devel/bmake/files/Makefile.in')
-rw-r--r--devel/bmake/files/Makefile.in17
1 files changed, 8 insertions, 9 deletions
diff --git a/devel/bmake/files/Makefile.in b/devel/bmake/files/Makefile.in
index 4e5b671b7d6..9175b24f5f9 100644
--- a/devel/bmake/files/Makefile.in
+++ b/devel/bmake/files/Makefile.in
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.in,v 1.1.1.2 2008/03/09 19:39:32 joerg Exp $
+# $NetBSD: Makefile.in,v 1.1.1.3 2008/11/11 14:28:22 joerg Exp $
# @(#)Makefile 5.2 (Berkeley) 12/28/90
-# $Id: Makefile.in,v 1.1.1.2 2008/03/09 19:39:32 joerg Exp $
+# $Id: Makefile.in,v 1.1.1.3 2008/11/11 14:28:22 joerg Exp $
PROG= bmake
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
@@ -13,17 +13,13 @@ SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
SRCS += lstPrev.c
-.if !empty(LIBOBJS)
-SRCS+= ${LIBOBJS:.o=.c}
-.endif
-
# you can use this Makefile if you have an earlier version of bmake.
prefix= @prefix@
srcdir= @srcdir@
CC?= @CC@
# Base version on src date
-BMAKE_VERSION= 20080215
+BMAKE_VERSION= 20081101
# knowing when it was built is also handy
BUILD_DATE!= date +%Y%m%d
MAKE_VERSION:= bmake-${BMAKE_VERSION} build-${BUILD_DATE}
@@ -39,6 +35,10 @@ LDFLAGS= @LDFLAGS@
LIBOBJS= @LIBOBJS@
LDADD= @LIBS@
+.if !empty(LIBOBJS)
+SRCS+= ${LIBOBJS:T:.o=.c}
+.endif
+
.PATH: ${srcdir}
.PATH: ${srcdir}/lst.lib
@@ -64,7 +64,6 @@ SUBDIR= PSD.doc
# lets us force or not the definition of MACHINE.
CFLAGS_main.o+= "-DFORCE_MACHINE=\"${MACHINE}\""
MANTARGET=cat
-SRCS+= getenv.c
INSTALL?=${srcdir}/install-sh
.if (${MACHINE} == "sun386")
# even I don't have one of these anymore :-)
@@ -152,7 +151,7 @@ install-mk:
.ifdef TOOLDIR
# this is a native netbsd build,
# use libutil rather than the local emalloc etc.
-CPPFLAGS+= -DHAVE_EMALLOC
+CPPFLAGS+= -DUSE_EMALLOC
LDADD+=-lutil
DPADD+=${LIBUTIL}
.endif