]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/NISCC/TLS_SSL/Makefile
Security-57031.1.35.tar.gz
[apple/security.git] / SecurityTests / clxutils / NISCC / TLS_SSL / Makefile
1 #
2 # Top-level Makefile for NISCC/TLS_SSL. Not compatible with Jasper tools or
3 # PB project files or Makefiles. Doesn't use SYMROOT, DSTROOT, etc., though
4 # it does require the LOCAL_BUILD_DIR env var to be set.
5 #
6 SHELL := /bin/zsh
7
8 SUBDIRS= certDecode nisccSimpleClient skipThisNisccCert nisccCertVerify
9
10 # default SRCROOT for clean target
11 SRCROOT ?= $(shell pwd)
12
13 first:
14 @foreach i in $(SUBDIRS); \
15 echo "=== Making $$i ==="; \
16 cd $$i || exit 1; \
17 make || exit 1; \
18 cd ..; \
19 end
20
21 build: first
22
23 sphinx:
24 make "SPHINX=-DSPHINX"
25
26 install: first
27
28 # this module doesn't need to install any headers
29 installhdrs:
30
31 installsrc:
32
33 clean:
34 @foreach i in $(SUBDIRS); \
35 echo "=== Cleaning $$i ==="; \
36 cd $$i || exit 1; \
37 make clean || exit 1; \
38 cd ..; \
39 end