]> git.saurik.com Git - apple/security.git/blame - SecurityTests/clxutils/sslSubjName/Makefile
Security-57031.1.35.tar.gz
[apple/security.git] / SecurityTests / clxutils / sslSubjName / Makefile
CommitLineData
b1ab9ed8 1# name of executable to build
d8f41ccd
A
2EXECUTABLE= sslSubjName
3# C++ source (with .cpp extension)
4CPSOURCE= sslSubjName.cpp
b1ab9ed8 5# C source (.c extension)
d8f41ccd 6CSOURCE=
b1ab9ed8 7
d8f41ccd
A
8#
9# Note final load with cc, not ld
10#
b1ab9ed8
A
11# project-specific libraries, e.g., -lstdc++
12#
d8f41ccd
A
13ifeq "-DSPHINX" "$(SPHINX)"
14 PROJ_LIBS=
15else
16 PROJ_LIBS=
17endif
b1ab9ed8
A
18#
19# Optional lib search paths
20#
21PROJ_LIBPATH=
b1ab9ed8
A
22#
23# choose one for cc
24#
25VERBOSE=
26#VERBOSE=-v
27
b1ab9ed8
A
28#
29# Other files to remove at 'make clean' time
30#
31OTHER_TO_CLEAN=
32
d8f41ccd
A
33#
34# non-standard frameworks (e.g., -framework foo)
35#
36PROJ_FRAMEWORKS= -framework CoreFoundation
b1ab9ed8
A
37#
38# project-specific includes, with leading -I
39#
40PROJ_INCLUDES=
41
42#
43# Optional C flags (warnings, optimizations, etc.)
44#
45PROJ_CFLAGS=
46
47#
48# Optional link flags (using cc, not ld)
49#
50PROJ_LDFLAGS=
51
52#
53# Optional dependencies
54#
55PROJ_DEPENDS=
56
d8f41ccd
A
57#
58# Optional files on which *.{c,cpp} depend
59#
60HDR_DEPENDS=../clAppUtils/certVerify.h
61
62include ../Makefile.cdsa