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