]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/sslSubjName/Makefile
Security-57031.1.35.tar.gz
[apple/security.git] / SecurityTests / clxutils / sslSubjName / Makefile
1 # name of executable to build
2 EXECUTABLE= sslSubjName
3 # C++ source (with .cpp extension)
4 CPSOURCE= sslSubjName.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 ifeq "-DSPHINX" "$(SPHINX)"
14 PROJ_LIBS=
15 else
16 PROJ_LIBS=
17 endif
18 #
19 # Optional lib search paths
20 #
21 PROJ_LIBPATH=
22 #
23 # choose one for cc
24 #
25 VERBOSE=
26 #VERBOSE=-v
27
28 #
29 # Other files to remove at 'make clean' time
30 #
31 OTHER_TO_CLEAN=
32
33 #
34 # non-standard frameworks (e.g., -framework foo)
35 #
36 PROJ_FRAMEWORKS= -framework CoreFoundation
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=
51
52 #
53 # Optional dependencies
54 #
55 PROJ_DEPENDS=
56
57 #
58 # Optional files on which *.{c,cpp} depend
59 #
60 HDR_DEPENDS=../clAppUtils/certVerify.h
61
62 include ../Makefile.cdsa