From 0fd38aa1db1cf2637d908eff4c116c2fbf2b3cc8 Mon Sep 17 00:00:00 2001 From: ian Date: Tue, 4 Jan 2005 22:23:43 +0000 Subject: [PATCH] hostprogs too --- Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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 -- 2.30.2