X-Git-Url: http://andersk.mit.edu/gitweb/libfaim.git/blobdiff_plain/9ba272ca73923773d44b27896645bdb13480736f..0589dc540706ddf1615d9085f2a68df227509ee6:/utils/Makefile diff --git a/utils/Makefile b/utils/Makefile index eb3475a..4f73deb 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -1,20 +1,16 @@ include Makefile.dynamicrules -UTIL_DIRS = aimdump faimtest #aimpasswd +UTIL_DIRS = faimtest #aimdebugd aimdump aimpasswd utils_all: @dirs='$(UTIL_DIRS)'; \ for i in $$dirs; do \ - cd $$i; \ - make; \ - cd ..; \ + $(MAKE) -C $$i; \ done; clean: @dirs='$(UTIL_DIRS)'; \ for i in $$dirs; do \ - cd $$i; \ - make clean; \ - cd ..; \ + $(MAKE) -C $$i clean; \ done; @rm -f Makefile.dynamicrules