]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Build strfile both as a host tool and as an installed program:
authorapb <apb@NetBSD.org>
Fri, 26 Sep 2008 18:23:09 +0000 (18:23 +0000)
committerapb <apb@NetBSD.org>
Fri, 26 Sep 2008 18:23:09 +0000 (18:23 +0000)
* in games/fortune/strfile/Makefile, build strfile as a
  regular program instead of as a host tool;
* add tools/strfile directory to build strfile as a host tool;
* in tools/Makefile, add strfile to SUBDIR list;
* in BSD.*.mk, define TOOL_STRFILE variable;
* in games/fortune/datfiles/Makefile, use TOOL_STRFILE when creating
  databases at build time;
* in distrib/sets/lists/games/mi, mention usr/games/strfile.

fortune/datfiles/Makefile
fortune/strfile/Makefile

index d9b44a3588229406404721eb263bcf7d1df2660d..10b07db8041188b2431298113c54e3bae5967cea 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.37 2008/03/21 21:09:48 reed Exp $
+#      $NetBSD: Makefile,v 1.38 2008/09/26 18:23:09 apb Exp $
 #      @(#)Makefile    8.2 (Berkeley) 4/19/94
 
 .include <bsd.own.mk>                  # for INSTALL_OFFENSIVE_FORTUNES
@@ -24,8 +24,7 @@ TYPE=         fake
 
 CLEANFILES+=${DATFILES}
 
-STRFILEDIR!=cd $(.CURDIR)/../strfile; ${PRINTOBJDIR}
-STRFILE=${STRFILEDIR}/strfile
+STRFILE=${TOOL_STRFILE}
 
 .if ${MKSHARE} != "no"
 FILES=${SRCFILES} ${DATFILES}
index a56d1d4ca7f8e3eb3b044f2789301883790ebd89..669e35495e0d66b099dea9a00d3c56ff66f0d835 100644 (file)
@@ -1,7 +1,8 @@
-#      $NetBSD: Makefile,v 1.8 2000/04/14 04:12:19 simonb Exp $
+#      $NetBSD: Makefile,v 1.9 2008/09/26 18:23:09 apb Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
-HOSTPROG=      strfile
-MAN=           strfile.8
+PROG=  strfile
+MAN=   strfile.8
 
-.include <bsd.hostprog.mk>
+.include "../../Makefile.inc"
+.include <bsd.prog.mk>