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