]> git.saurik.com Git - apple/security.git/blame - libsecurity_cryptkit/ckutils/Makefile
Security-55471.14.18.tar.gz
[apple/security.git] / libsecurity_cryptkit / ckutils / Makefile
CommitLineData
b1ab9ed8
A
1#
2# Top-level Makefile for ckutils. Allows build or clean
3# of all directories in one swoop.
4#
5SHELL := /bin/zsh
6
7SUBDIRS= atomTime badsig blobtest cfileTest giantAsmBench giantBench giantDvt
8
9first:
10 @foreach i in $(SUBDIRS); \
11 echo "=== Making $$i ==="; \
12 cd $$i; \
13 make || exit; \
14 cd ..; \
15 end
16
17clean:
18 @foreach i in $(SUBDIRS); \
19 echo "=== Cleaning $$i ==="; \
20 (cd $$i; make clean;) \
21 end