X-Git-Url: http://andersk.mit.edu/gitweb/libfaim.git/blobdiff_plain/70558097d071c17baaea7a31b0dced8c35fd9d05..00f3b08b7039579c34c4131af5cf1eaae0562ac9:/utils/Makefile diff --git a/utils/Makefile b/utils/Makefile index a0c92b8..4f73deb 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -1,20 +1,16 @@ include Makefile.dynamicrules -UTIL_DIRS = faimtest #aimdump 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