X-Git-Url: http://andersk.mit.edu/gitweb/libfaim.git/blobdiff_plain/9de3ca7e3fdcf62e088fe2a0c7fcdc219e1a5094..0589dc540706ddf1615d9085f2a68df227509ee6:/utils/Makefile diff --git a/utils/Makefile b/utils/Makefile index ae11c4e..4f73deb 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -1,20 +1,16 @@ include Makefile.dynamicrules -UTIL_DIRS = 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