]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/p12/Makefile
Security-57336.1.9.tar.gz
[apple/security.git] / SecurityTests / clxutils / p12 / Makefile
1 # name of executable to build
2 EXECUTABLE=p12
3 # C++ source (with .cpp extension)
4 CPSOURCE= p12.cpp p12Crypto.cpp p12Decode.cpp p12pbe.cpp pkcs12Parsed.cpp \
5 p12Encode.cpp p12ImportExport.cpp p12Parse.cpp p12GetPassKey.cpp SecNssCoder.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 PROJ_FRAMEWORKS= -framework securityd_client$(VARIANT_SUFFIX)
15
16
17 #
18 # Optional lib search paths
19 #
20 PROJ_LIBPATH=
21 #
22 # choose one for cc
23 #
24 VERBOSE=
25 #VERBOSE=-v
26
27 #
28 # Other files to remove at 'make clean' time
29 #
30 OTHER_TO_CLEAN=
31
32 #
33 # project-specific includes, with leading -I
34 #
35 PROJ_INCLUDES=
36
37 #
38 # Optional C flags (warnings, optimizations, etc.)
39 #
40 PROJ_CFLAGS=
41
42 #
43 # Optional link flags (using cc, not ld)
44 #
45 PROJ_LDFLAGS=-lcrypto
46
47 #
48 # Optional dependencies
49 #
50 PROJ_DEPENDS=
51
52 include ../Makefile.cdsa