1# name of executable to build
2EXECUTABLE=p12Reencode
3# C++ source (with .cpp extension)
4CPSOURCE= p12Reencode.cpp
5# C source (.c extension)
6CSOURCE=
7
8#
9# Note final load with cc, not ld
10#
11# project-specific libraries, e.g., -lstdc++
12#
13PROJ_LIBS= -lcrypto
14#
15# Optional lib search paths
16#
17PROJ_LIBPATH=
18#
19# choose one for cc
20#
21VERBOSE=
22#VERBOSE=-v
23
24#
25# Other files to remove at 'make clean' time
26#
27OTHER_TO_CLEAN=
28
29#
30# non-standard frameworks (e.g., -framework foo)
31#
32PROJ_FRAMEWORKS= -framework security_pkcs12$(VARIANT_SUFFIX) -framework security_apple_csp$(VARIANT_SUFFIX) -framework security_keychain$(VARIANT_SUFFIX)
33
34#
35# project-specific includes, with leading -I
36#
37PROJ_INCLUDES= 
38
39#
40# Optional C flags (warnings, optimizations, etc.)
41#
42PROJ_CFLAGS=
43
44#
45# Optional link flags (using cc, not ld)
46#
47PROJ_LDFLAGS=
48
49#
50# Optional dependencies
51#
52PROJ_DEPENDS=
53
54include ../Makefile.cdsa
55