]> git.saurik.com Git - apple/security.git/blobdiff - Security/libsecurity_cryptkit/ckutils/Makefile
Security-57031.1.35.tar.gz
[apple/security.git] / Security / libsecurity_cryptkit / ckutils / Makefile
diff --git a/Security/libsecurity_cryptkit/ckutils/Makefile b/Security/libsecurity_cryptkit/ckutils/Makefile
new file mode 100644 (file)
index 0000000..e0a50cb
--- /dev/null
@@ -0,0 +1,21 @@
+#
+# Top-level Makefile for ckutils. Allows build or clean
+# of all directories in one swoop.  
+#
+SHELL := /bin/zsh
+
+SUBDIRS= atomTime badsig blobtest cfileTest giantAsmBench giantBench giantDvt
+
+first:
+       @foreach i in $(SUBDIRS); \
+               echo "=== Making $$i ==="; \
+               cd $$i; \
+               make || exit; \
+               cd ..; \
+       end
+
+clean:
+       @foreach i in $(SUBDIRS); \
+               echo "=== Cleaning $$i ==="; \
+               (cd $$i; make clean;) \
+       end