1 include $(top_srcdir)/common.mk
15 noinst_LTLIBRARIES = libopenocd.la
16 bin_PROGRAMS = openocd
20 openocd_SOURCES = $(MAINFILE)
21 openocd_LDADD = libopenocd.la
24 openocd_LDADD += $(top_builddir)/jimtcl/libjim.a
26 openocd_LDADD += -ljim
33 libopenocd_la_SOURCES = \
41 libopenocd_la_CPPFLAGS = -DPKGBLDDATE=\"`date +%F-%R`\"
43 # banner output includes RELSTR appended to $VERSION from the configure script
44 # guess-rev.sh returns either a repository version ID or "-snapshot"
46 libopenocd_la_CPPFLAGS += -DRELSTR=\"\"
47 libopenocd_la_CPPFLAGS += -DGITVERSION=\"\"
49 libopenocd_la_CPPFLAGS += -DRELSTR=\"`$(top_srcdir)/guess-rev.sh $(top_srcdir)`\"
50 libopenocd_la_CPPFLAGS += -DGITVERSION=\"`cd $(top_srcdir) && git describe`\"
53 # add default CPPFLAGS
54 libopenocd_la_CPPFLAGS += $(AM_CPPFLAGS) $(CPPFLAGS)
56 # the library search path.
57 libopenocd_la_LDFLAGS = $(all_libraries)
65 libopenocd_la_LIBADD = \
66 $(top_builddir)/src/xsvf/libxsvf.la \
67 $(top_builddir)/src/svf/libsvf.la \
68 $(top_builddir)/src/pld/libpld.la \
69 $(top_builddir)/src/jtag/libjtag.la \
70 $(top_builddir)/src/transport/libtransport.la \
71 $(top_builddir)/src/flash/libflash.la \
72 $(top_builddir)/src/target/libtarget.la \
73 $(top_builddir)/src/server/libserver.la \
74 $(top_builddir)/src/rtos/librtos.la \
75 $(top_builddir)/src/helper/libhelper.la \
76 $(LIBFTDI_LIBS) $(MINGWLDADD) \
77 $(HIDAPI_LIBS) $(LIBUSB1_LIBS) $(LIBUSB0_LIBS)
80 $(srcdir)/helper/startup.tcl \
81 $(srcdir)/jtag/startup.tcl \
82 $(srcdir)/target/startup.tcl \
83 $(srcdir)/flash/startup.tcl \
84 $(srcdir)/server/startup.tcl
86 EXTRA_DIST = $(STARTUP_TCL_SRCS)
88 BUILT_SOURCES = startup_tcl.inc
90 startup.tcl: $(STARTUP_TCL_SRCS)
93 BIN2C = $(top_srcdir)/src/helper/bin2char.sh
95 # Convert .tcl to c-array
96 startup_tcl.inc: startup.tcl $(BIN2C)
97 $(BIN2C) < $< > $@ || { rm -f $@; false; }
99 # add generated files to make clean list
100 CLEANFILES = startup.tcl startup_tcl.inc
102 # we do not want generated file in the dist
104 rm -f $(distdir)/startup_tcl.inc
106 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
108 # The "quick" target builds executables & reinstalls the executables
109 # Primary use: developer types to quicken the edit/compile/debug
110 # cycle. by not requiring a "full build and full install". Note the
111 # assumption is: You are only rebuilding the EXE.... and everything
112 # else is/was previously installed.
114 # use at your own risk
115 quick: all install-binPROGRAMS