1# name of executable to build
2EXECUTABLE=hashTime
3# C++ source (with .cpp extension)
4CPSOURCE=hashTime.cpp
5# C source (.c extension)
6CSOURCE= MD5.c SHA1_priv.c SHA1.c
7
8#
9# Note final load with cc, not ld
10#
11# project-specific libraries, e.g., -lstdc++
12#
13PROJ_LIBS= -lcrypto
14#
15# Optional lib search paths
16#
17PROJ_LIBPATH=
18#
19# choose one for cc
20#
21VERBOSE=
22#VERBOSE=-v
23
24#
25# Other files to remove at 'make clean' time
26#
27OTHER_TO_CLEAN=
28
29#
30# non-standard frameworks (e.g., -framework foo)
31#
32# temp for old cputime
33PROJ_FRAMEWORKS=-framework IOKit
34
35#
36# project-specific includes, with leading -I
37#
38PROJ_INCLUDES=-I$(LOCAL_BUILD)/include
39
40#
41# Optional C flags (warnings, optimizations, etc.)
42#
43PROJ_CFLAGS=-Os
44
45#
46# Optional link flags (using cc, not ld)
47#
48#PROJ_LDFLAGS= -lMallocDebug
49PROJ_LDFLAGS=
50
51#
52# Optional dependencies
53#
54PROJ_DEPENDS=
55
56include ../Makefile.cdsa
57