chiark / gitweb /
hostprogs too
authorian <ian>
Tue, 4 Jan 2005 22:23:43 +0000 (22:23 +0000)
committerian <ian>
Tue, 4 Jan 2005 22:23:43 +0000 (22:23 +0000)
Makefile

index 23a634eb43853d1415a97bb5a3a55ca1d1bcadc8..edb870484bf184719d996728af0efab072e530d6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,11 @@
 
-all:           picprogs
+all:           picprogs hostprogs
+
+PICPROGS_DIRS= iwjpictest cebpic
+HOSTPROGS_DIRS=        hostside
 
 picprogs:
-               $(MAKE) -C iwjpictest
-               $(MAKE) -C cebpic
+               set -e; for f in $(PICPROGS_DIRS); do $(MAKE) -C $$f; done
+
+hostprogs:
+               set -e; for f in $(HOSTPROGS_DIRS); do $(MAKE) -C $$f; done