Module Name: src
Committed By: drochner
Date: Thu Nov 19 19:57:40 UTC 2009
Modified Files:
src/etc/mtree: Makefile
Log Message:
remove some unnecessary .OBJDIR prefixes in make targets
being here, add NetBSD.dist to CLEANFILES
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/etc/mtree/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/etc/mtree/Makefile
diff -u src/etc/mtree/Makefile:1.9 src/etc/mtree/Makefile:1.10
--- src/etc/mtree/Makefile:1.9 Mon Nov 2 10:23:40 2009
+++ src/etc/mtree/Makefile Thu Nov 19 19:57:40 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2009/11/02 10:23:40 stacktic Exp $
+# $NetBSD: Makefile,v 1.10 2009/11/19 19:57:40 drochner Exp $
.include <bsd.own.mk>
@@ -12,7 +12,7 @@
NETBSD_DIST_X11_FILE=
.endif
-${.OBJDIR}/NetBSD.dist: NetBSD.dist.base ${NETBSD_DIST_X11_FILE}
+NetBSD.dist: NetBSD.dist.base ${NETBSD_DIST_X11_FILE}
${TOOL_CAT} ${.CURDIR}/NetBSD.dist.base ${NETBSD_DIST_X11_FILE} > \
${.TARGET}
@@ -28,7 +28,7 @@
TOOL_MTREE.unpriv= -W
.endif
-distrib-dirs: .PHONY check_DESTDIR ${.OBJDIR}/NetBSD.dist
+distrib-dirs: .PHONY check_DESTDIR NetBSD.dist
.if !defined(DISTRIBUTION_DONE) # {
# Create DESTDIR using HOST_INSTALL_DIR, not INSTALL_DIR, because
# INSTALL_DIR would want to write to the metalog, and it can't do that
@@ -45,4 +45,6 @@
.endif # MKUNPRIVED # }
.endif # DISTRIBUTION_DONE # }
+CLEANFILES+= NetBSD.dist
+
.include <bsd.prog.mk>