]> git.sur5r.net Git - openocd/blob - src/helper/Makefile.am
e8d9a6944887a3a7007c8bbd6b8448a07a9526a5
[openocd] / src / helper / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src $(all_includes) -I$(top_srcdir)/src/target -I$(top_srcdir)/src/server
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 jim-eventloop.c 
10 endif
11
12
13
14 libhelper_a_SOURCES = binarybuffer.c $(CONFIGFILES) configuration.c log.c command.c time_support.c \
15         replacements.c fileio.c startup_tcl.c
16
17 if IOUTIL
18 libhelper_a_SOURCES += ioutil.c
19 endif
20
21 libhelper_a_CFLAGS =
22 if IS_MINGW
23 # FD_* macros are sloppy with their signs on MinGW32 platform
24 libhelper_a_CFLAGS += -Wno-sign-compare
25 endif
26
27 noinst_HEADERS = binarybuffer.h configuration.h types.h log.h command.h \
28         time_support.h replacements.h fileio.h jim.h jim-eventloop.h \
29         startup.tcl bin2char.c
30
31 bin2char$(EXEEXT_FOR_BUILD): bin2char.c
32         ${CC_FOR_BUILD} ${CFLAGS_FOR_BUILD} $(srcdir)/bin2char.c -o $@
33
34 # Convert .tcl to cfile
35 startup_tcl.c: startup.tcl bin2char$(EXEEXT_FOR_BUILD)
36         ./bin2char$(EXEEXT_FOR_BUILD) startup_tcl < $(srcdir)/startup.tcl > $@
37
38 # add startup_tcl.c to make clean list
39 CLEANFILES = startup_tcl.c bin2char$(EXEEXT_FOR_BUILD)
40
41 MAINTAINERCLEANFILES = Makefile.in