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