configure: Use same case for libjaylink as for other libs
[openocd.git] / src / Makefile.am
blob699917c35a7d55d11c30f5512b2e41f527c83037
1 include $(top_srcdir)/common.mk
3 SUBDIRS = \
4         jtag \
5         helper \
6         target \
7         transport \
8         flash \
9         svf \
10         xsvf \
11         pld \
12         server \
13         rtos
15 noinst_LTLIBRARIES = libopenocd.la
16 bin_PROGRAMS = openocd
18 MAINFILE = main.c
20 openocd_SOURCES = $(MAINFILE)
21 openocd_LDADD = libopenocd.la
23 if INTERNAL_JIMTCL
24 openocd_LDADD += $(top_builddir)/jimtcl/libjim.a
25 else
26 openocd_LDADD += -ljim
27 endif
29 if ULINK
30 openocd_LDADD += -lm
31 endif
33 libopenocd_la_SOURCES = \
34         hello.c \
35         openocd.c
37 noinst_HEADERS = \
38         hello.h \
39         openocd.h
41 libopenocd_la_CPPFLAGS =
43 # banner output includes RELSTR appended to $VERSION from the configure script
44 # guess-rev.sh returns either a repository version ID or "-snapshot"
45 if RELEASE
46 libopenocd_la_CPPFLAGS += -DRELSTR=\"\"
47 libopenocd_la_CPPFLAGS += -DGITVERSION=\"\"
48 else
49 libopenocd_la_CPPFLAGS += -DRELSTR=\"`$(top_srcdir)/guess-rev.sh $(top_srcdir)`\"
50 libopenocd_la_CPPFLAGS += -DGITVERSION=\"`cd $(top_srcdir) && git describe`\"
51 libopenocd_la_CPPFLAGS += -DPKGBLDDATE=\"`date +%F-%R`\"
52 endif
54 # add default CPPFLAGS
55 libopenocd_la_CPPFLAGS += $(AM_CPPFLAGS) $(CPPFLAGS)
57 # the library search path.
58 libopenocd_la_LDFLAGS = $(all_libraries)
60 if IS_MINGW
61 MINGWLDADD = -lws2_32
62 else
63 MINGWLDADD =
64 endif
66 libopenocd_la_LIBADD = \
67         $(top_builddir)/src/xsvf/libxsvf.la \
68         $(top_builddir)/src/svf/libsvf.la \
69         $(top_builddir)/src/pld/libpld.la \
70         $(top_builddir)/src/jtag/libjtag.la \
71         $(top_builddir)/src/transport/libtransport.la \
72         $(top_builddir)/src/flash/libflash.la \
73         $(top_builddir)/src/target/libtarget.la \
74         $(top_builddir)/src/server/libserver.la \
75         $(top_builddir)/src/rtos/librtos.la \
76         $(top_builddir)/src/helper/libhelper.la \
77         $(LIBFTDI_LIBS) $(MINGWLDADD) \
78         $(HIDAPI_LIBS) $(LIBUSB0_LIBS) $(LIBUSB1_LIBS)
80 if !INTERNAL_LIBJAYLINK
81 libopenocd_la_LIBADD += $(LIBJAYLINK_LIBS)
82 endif
84 STARTUP_TCL_SRCS = \
85         $(srcdir)/helper/startup.tcl \
86         $(srcdir)/jtag/startup.tcl \
87         $(srcdir)/target/startup.tcl \
88         $(srcdir)/flash/startup.tcl \
89         $(srcdir)/server/startup.tcl
91 EXTRA_DIST = $(STARTUP_TCL_SRCS)
93 BUILT_SOURCES = startup_tcl.inc
95 startup.tcl: $(STARTUP_TCL_SRCS)
96         cat $^ > $@
98 BIN2C = $(top_srcdir)/src/helper/bin2char.sh
100 # Convert .tcl to c-array
101 startup_tcl.inc: startup.tcl $(BIN2C)
102         $(BIN2C) < $< > $@ || { rm -f $@; false; }
104 # add generated files to make clean list
105 CLEANFILES = startup.tcl startup_tcl.inc
107 # we do not want generated file in the dist
108 dist-hook:
109         rm -f $(distdir)/startup_tcl.inc
111 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
113 # The "quick" target builds executables & reinstalls the executables
114 # Primary use: developer types to quicken the edit/compile/debug
115 # cycle.  by not requiring a "full build and full install". Note the
116 # assumption is: You are only rebuilding the EXE.... and everything
117 # else is/was previously installed.
119 # use at your own risk
120 quick: all install-binPROGRAMS