]> git.sur5r.net Git - openocd/blob - src/helper/Makefile.am
David Kuehling <dvdkhlng@gmx.de> - added jim-eventloop.c
[openocd] / src / helper / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src $(all_includes) -I$(top_srcdir)/src/target
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 jim-eventloop.c startup_tcl.c
14
15 noinst_HEADERS = binarybuffer.h configuration.h types.h log.h command.h \
16         time_support.h replacements.h fileio.h jim.h
17
18 bin2char$(EXEEXT_FOR_BUILD): bin2char.c
19         ${CC_FOR_BUILD} ${CFLAGS_FOR_BUILD} $(srcdir)/bin2char.c -o $@
20
21 # Convert .tcl to cfile
22 startup_tcl.c: startup.tcl bin2char$(EXEEXT_FOR_BUILD)
23         ./bin2char$(EXEEXT_FOR_BUILD) startup_tcl < $(srcdir)/startup.tcl > $@
24
25 # add startup_tcl.c to make clean list
26 CLEANFILES = startup_tcl.c bin2char$(EXEEXT_FOR_BUILD)