1 SUBDIRS = helper jtag xsvf svf target server flash pld
3 lib_LTLIBRARIES = libopenocd.la
12 openocd_SOURCES = $(MAINFILE)
13 openocd_LDADD = libopenocd.la
15 libopenocd_la_SOURCES = openocd.c
17 # set the include path found by configure
20 -I$(top_srcdir)/src/helper \
21 -I$(top_srcdir)/src/jtag \
22 -I$(top_srcdir)/src/target \
23 -I$(top_srcdir)/src/xsvf \
24 -I$(top_srcdir)/src/svf \
25 -I$(top_srcdir)/src/server \
26 -I$(top_srcdir)/src/flash \
27 -I$(top_srcdir)/src/pld
29 libopenocd_la_CPPFLAGS = -DPKGBLDDATE=\"`date +%F-%R`\"
31 # banner output includes RELSTR appended to $VERSION from the configure script
32 # guess-rev.sh returns either a repository version ID or "-snapshot"
34 libopenocd_la_CPPFLAGS += -DRELSTR=\"\"
36 libopenocd_la_CPPFLAGS += -DRELSTR=\"`$(top_srcdir)/guess-rev.sh $(top_srcdir)`\"
39 # add default CPPFLAGS
40 libopenocd_la_CPPFLAGS += $(AM_CPPFLAGS) $(CPPFLAGS)
42 # the library search path.
43 libopenocd_la_LDFLAGS = $(all_libraries)
52 FTDI2232LIB = -lftdi -lusb
55 FTDI2232LIB = -lftdi -lusb
79 libopenocd_la_LIBADD = \
80 $(top_builddir)/src/xsvf/libxsvf.la \
81 $(top_builddir)/src/svf/libsvf.la \
82 $(top_builddir)/src/pld/libpld.la \
83 $(top_builddir)/src/jtag/libjtag.la \
84 $(top_builddir)/src/flash/libflash.la \
85 $(top_builddir)/src/target/libtarget.la \
86 $(top_builddir)/src/server/libserver.la \
87 $(top_builddir)/src/helper/libhelper.la \
88 $(FTDI2232LIB) $(MINGWLDADD) $(LIBUSB)
91 libopenocd_la_LIBADD += -lmicrohttpd
94 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
96 # The "quick" target builds executables & reinstalls the executables
97 # Primary use: developer types to quicken the edit/compile/debug
98 # cycle. by not requiring a "full build and full install". Note the
99 # assumption is: You are only rebuilding the EXE.... and everything
100 # else is/was previously installed.
102 # use at your own risk
103 quick: all install-binPROGRAMS