r5579 - in trunk/gta02-core: . modules

werner at docs.openmoko.org werner at docs.openmoko.org
Sun Aug 30 08:04:55 CEST 2009


Author: werner
Date: 2009-08-30 08:04:55 +0200 (Sun, 30 Aug 2009)
New Revision: 5579

Modified:
   trunk/gta02-core/Makefile
   trunk/gta02-core/modules/mkloe
Log:
- Makefile: use "make loe" instead of running mkloe directly, so that we can
  add local fancy stuff
- modules/Makefile: shortcut for mkloe, Poscript handling, and cleanup
- modules/mkloe: added -ps option to convert all modules to Postscript



Modified: trunk/gta02-core/Makefile
===================================================================
--- trunk/gta02-core/Makefile	2009-08-30 06:04:00 UTC (rev 5578)
+++ trunk/gta02-core/Makefile	2009-08-30 06:04:55 UTC (rev 5579)
@@ -16,8 +16,8 @@
 
 update:
 		svn update && \
-		    cd components && ./mkloe && \
-		    cd ../modules && ./mkloe
+		    make -C components loe && \
+		    make -C modules loe
 
 gv:
 		gv gta02-core-all.ps.gz

Modified: trunk/gta02-core/modules/mkloe
===================================================================
--- trunk/gta02-core/modules/mkloe	2009-08-30 06:04:00 UTC (rev 5578)
+++ trunk/gta02-core/modules/mkloe	2009-08-30 06:04:55 UTC (rev 5579)
@@ -13,6 +13,13 @@
     fi
 done
 
+if [ "$1" = "-ps" ]; then
+    for n in $MODS; do
+	fped -p $n.fpd || exit 1
+    done
+    exit 0
+fi
+
 for n in $MODS; do
     fped -k $n.fpd -
 done |




More information about the commitlog mailing list