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