]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/p12Parse/Makefile
Security-57336.1.9.tar.gz
[apple/security.git] / SecurityTests / clxutils / p12Parse / Makefile
1 # name of executable to build
2 EXECUTABLE=p12Parse
3 # C++ source (with .cpp extension)
4 CPSOURCE= main.cpp p12Crypto.cpp pkcs12Parsed.cpp \
5 p12Parse.cpp pkcs12Utils.cpp
6 # C source (.c extension)
7 CSOURCE=
8
9 #
10 # Note final load with cc, not ld
11 #
12 # project-specific libraries, e.g., -lstdc++
13 #
14 #
15 # Note: normally security_pkcs12 is not usable outside of Security.framework since
16 # it uses private routines in libsecurity_keychain. However we're just pulling in the
17 # ASN1 templates from pkcs12Templates and SecNssCoder...safe...for now.
18 #
19 PROJ_FRAMEWORKS= # -framework security_asn1 -framework security_pkcs12
20
21
22 #
23 # Optional lib search paths
24 #
25 PROJ_LIBPATH=
26 #
27 # choose one for cc
28 #
29 VERBOSE=
30 #VERBOSE=-v
31
32 #
33 # Other files to remove at 'make clean' time
34 #
35 OTHER_TO_CLEAN=
36
37 #
38 # project-specific includes, with leading -I
39 #
40 PROJ_INCLUDES=
41
42 #
43 # Optional C flags (warnings, optimizations, etc.)
44 #
45 PROJ_CFLAGS=
46
47 #
48 # Optional link flags (using cc, not ld)
49 #
50 PROJ_LDFLAGS=-lcrypto
51
52 #
53 # Optional dependencies
54 #
55 PROJ_DEPENDS=
56
57 include ../Makefile.cdsa