]> git.saurik.com Git - apple/security.git/blame - SecurityTests/cspxutils/cputimeCal/Makefile
Security-57031.1.35.tar.gz
[apple/security.git] / SecurityTests / cspxutils / cputimeCal / Makefile
CommitLineData
b1ab9ed8 1# name of executable to build
d8f41ccd
A
2EXECUTABLE=cputimeCal
3# C++ source (with .cpp extension)
4CPSOURCE= cputimeCal.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#
13PROJ_LIBS=
b1ab9ed8
A
14#
15# Optional lib search paths
16#
17PROJ_LIBPATH=
b1ab9ed8
A
18#
19# choose one for cc
20#
21VERBOSE=
22#VERBOSE=-v
23
24#
d8f41ccd 25# Other files to remove at 'make clean' time
b1ab9ed8 26#
d8f41ccd 27OTHER_TO_CLEAN=
b1ab9ed8
A
28
29#
d8f41ccd 30# non-standard frameworks (e.g., -framework foo)
b1ab9ed8 31#
d8f41ccd 32PROJ_FRAMEWORKS= -framework CoreFoundation -framework IOKit
b1ab9ed8
A
33
34#
35# project-specific includes, with leading -I
36#
37PROJ_INCLUDES=
38
39#
40# Optional C flags (warnings, optimizations, etc.)
41#
42PROJ_CFLAGS=
43
44#
45# Optional link flags (using cc, not ld)
46#
d8f41ccd 47#PROJ_LDFLAGS= -lMallocDebug
b1ab9ed8
A
48PROJ_LDFLAGS=
49
50#
51# Optional dependencies
52#
53PROJ_DEPENDS=
54
d8f41ccd 55include ../Makefile.cdsa