Charles Hardin <ckhardin@gmail.com> move jim into helper
[fw/openocd] / src / helper / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src $(all_includes)
2 METASOURCES = AUTO
3 AM_CPPFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\" -DPKGLIBDIR=\"$(pkglibdir)\" @CPPFLAGS@
4 noinst_LIBRARIES = libhelper.a
5
6 if ECOSBOARD
7 CONFIGFILES = 
8 else
9 CONFIGFILES = options.c jim.c
10 endif
11
12 libhelper_a_SOURCES = binarybuffer.c $(CONFIGFILES) configuration.c log.c command.c time_support.c \
13         replacements.c fileio.c
14 noinst_HEADERS = binarybuffer.h configuration.h types.h log.h command.h \
15         time_support.h replacements.h fileio.h \
16         jim.h
17
18 libhelper_a_SOURCES += startup_tcl.c
19
20 noinst_PROGRAMS = bin2char
21
22 bin2char_SOURCES = bin2char.c
23
24 # Convert .tcl to cfile
25 startup_tcl.c: bin2char startup.tcl
26         ./bin2char startup_tcl < $(srcdir)/startup.tcl > startup_tcl.c
27
28 # add startup_tcl.c to make clean list
29 CLEANFILES = startup_tcl.c