r5089 - packages/trunk/warzone2100/debian

Paul Wise pabs at alioth.debian.org
Sat Dec 29 02:16:05 UTC 2007


Author: pabs
Date: 2007-12-29 02:16:05 +0000 (Sat, 29 Dec 2007)
New Revision: 5089

Modified:
   packages/trunk/warzone2100/debian/changelog
   packages/trunk/warzone2100/debian/rules
Log:
* Simplify build targets a little

Modified: packages/trunk/warzone2100/debian/changelog
===================================================================
--- packages/trunk/warzone2100/debian/changelog	2007-12-29 02:12:08 UTC (rev 5088)
+++ packages/trunk/warzone2100/debian/changelog	2007-12-29 02:16:05 UTC (rev 5089)
@@ -3,6 +3,7 @@
   * New upstream development snapshot
     - No longer creates save-game files that cause segfaults (Closes: #435278)
   * Remove homepages from package descriptions
+  * Simplify build targets a little
 
  -- Paul Wise <pabs at debian.org>  Sat, 29 Dec 2007 10:32:03 +0930
 

Modified: packages/trunk/warzone2100/debian/rules
===================================================================
--- packages/trunk/warzone2100/debian/rules	2007-12-29 02:12:08 UTC (rev 5088)
+++ packages/trunk/warzone2100/debian/rules	2007-12-29 02:16:05 UTC (rev 5089)
@@ -63,9 +63,9 @@
 
 build-stamp: config.status
 	dh_testdir
-	cd build_tools && $(MAKE)
-	cd lib && $(MAKE)
-	cd src && $(MAKE)
+	$(MAKE) -C build_tools
+	$(MAKE) -C lib
+	$(MAKE) -C src
 	touch $@
 # -------------------------------------
 
@@ -76,8 +76,7 @@
 
 build-indep-stamp: config.status
 	dh_testdir
-	cd data && $(MAKE) warzone.wz
-	cd data && $(MAKE) mp.wz
+	$(MAKE) -C data data
 	touch $@
 # -------------------------------------
 




More information about the Pkg-games-commits mailing list