chiark
/
gitweb
/
~ijackson
/
trains.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3c6bb3
)
hostprogs too
author
ian
<ian>
Tue, 4 Jan 2005 22:23:43 +0000
(22:23 +0000)
committer
ian
<ian>
Tue, 4 Jan 2005 22:23:43 +0000
(22:23 +0000)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/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