From: ian Date: Tue, 4 Jan 2005 22:23:43 +0000 (+0000) Subject: hostprogs too X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ijackson/git?a=commitdiff_plain;h=0fd38aa1db1cf2637d908eff4c116c2fbf2b3cc8;p=trains.git hostprogs too --- diff --git a/Makefile b/Makefile index 23a634e..edb8704 100644 --- 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