]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/clAppUtils/Makefile
Security-57031.10.10.tar.gz
[apple/security.git] / SecurityTests / clxutils / clAppUtils / Makefile
1 # name of executable to build
2 EXECUTABLE=libclutils.a
3 # C++ source (with .cpp extension)
4 CPSOURCE= BlobList.cpp CertBuilderApp.cpp CertParser.cpp \
5 certVerify.cpp identPicker.cpp keyPicker.cpp printCertName.cpp \
6 ringBufferIo.cpp sslRingBufferThreads.cpp sslServe.cpp sslClient.cpp \
7 sslAppUtils.cpp timeStr.cpp tpUtils.cpp
8
9
10 # C source (.c extension)
11 CSOURCE= clutils.c ioSock.c
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 # non-standard frameworks (e.g., -framework foo)
26 #
27 PROJ_FRAMEWORKS=
28
29 #
30 # Other files to remove at 'make clean' time
31 #
32 OTHER_TO_CLEAN=
33
34 #
35 # project-specific includes, with leading -I
36 #
37 PROJ_INCLUDES=
38
39 #
40 # Optional C flags (warnings, optimizations, etc.)
41 #
42 PROJ_CFLAGS= -fvisibility=hidden
43
44 #
45 # Optional link flags (using cc, not ld)
46 #
47 PROJ_LDFLAGS=
48
49 #
50 # Optional dependencies
51 #
52 PROJ_DEPENDS=
53
54 include ../Makefile.lib
55
56 # some crucial dependencies that must cause recompilation
57 THREAD_OBJS= $(OBJROOT)/sslAppUtils.o $(OBJROOT)/sslClient.o $(OBJROOT)/sslServe.o
58
59 $(THREAD_OBJS): sslThreading.h
60
61 $(OBJROOT)/certVerify.o: certVerify.h
62