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