]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/threadTest/Makefile
Security-57031.10.10.tar.gz
[apple/security.git] / SecurityTests / clxutils / threadTest / Makefile
1 # name of executable to build
2 EXECUTABLE=threadTest
3 # C++ source (with .cpp extension)
4 #CPSOURCE= threadTest.cpp cgConstruct.cpp cgVerify.cpp sslPing.cpp getFields.cpp signVerify.cpp timeThread.cpp symTest.cpp attach.cpp rsaSign.cpp desTest.cpp
5 CPSOURCE= threadTest.cpp cgConstructThr.cpp cgVerifyThr.cpp sslPing.cpp getFields.cpp signVerify.cpp timeThread.cpp symTestThr.cpp attach.cpp getCachedFields.cpp sslThrash.cpp cspRand.cpp derDecode.cpp secTrustEval.cpp kcStatus.cpp digestClient.cpp mdsLookupThr.cpp cssmErrStr.cpp trustSettings.cpp dbOpenClose.cpp copyRoots.cpp
6 # C source (.c extension)
7 CSOURCE= ioSockThr.c testutil.c
8
9 #
10 # Note final load with cc, not ld
11 #
12 # project-specific libraries, e.g., -lstdc++
13 #
14 # can't link against BSAFE as of 3/15/2001 - it's exported from Security
15 #PROJ_LIBS= -lc_static
16 PROJ_LIBS=
17 #
18 # Optional lib search paths
19 #
20 PROJ_LIBPATH= -L$(LOCAL_BUILD)
21 #
22 # choose one for cc
23 #
24 VERBOSE=
25 #VERBOSE=-v
26
27 #
28 # non-standard frameworks (e.g., -framework foo)
29 #
30 PROJ_FRAMEWORKS= -framework CoreFoundation
31
32 #
33 # project-specific includes, with leading -I
34 #
35 PROJ_INCLUDES=
36
37 #
38 # Optional C flags (warnings, optimizations, etc.)
39 #
40 PROJ_CFLAGS= -fvisibility=hidden
41
42 #
43 # Optional link flags (using cc, not ld)
44 #
45 #PROJ_LDFLAGS= -lMallocDebug
46 PROJ_LDFLAGS=
47
48 #
49 # Optional dependencies
50 #
51 CERT_FILE_NAME= mypage.apple_v3.100.cer
52 TARG_CERT_FILE= $(LOCAL_BUILD)/$(CERT_FILE_NAME)
53 PROJ_DEPENDS= $(TARG_CERT_FILE)
54
55 #
56 # Other files to remove at 'make clean' time
57 #
58 OTHER_TO_CLEAN=
59
60
61 include ../Makefile.cdsa
62
63
64 $(TARG_CERT_FILE): $(CERT_FILE_NAME)
65 cp -p $(CERT_FILE_NAME) $(LOCAL_BUILD)
66