]> git.sur5r.net Git - openocd/blob - src/Makefile.am
Fix 'make maintainer-clean' courtesy of Zach Welch <zw@superlucidity.net>
[openocd] / src / Makefile.am
1 bin_PROGRAMS = openocd
2
3 if ECOSBOARD
4 MAINFILE = ecosboard.c
5 else
6 MAINFILE = main.c
7 endif
8
9
10 openocd_SOURCES = $(MAINFILE) openocd.c
11
12 # set the include path found by configure
13 INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/helper \
14         -I$(top_srcdir)/src/jtag -I$(top_srcdir)/src/target -I$(top_srcdir)/src/xsvf -I$(top_srcdir)/src/svf \
15         -I$(top_srcdir)/src/server -I$(top_srcdir)/src/flash -I$(top_srcdir)/src/pld $(all_includes)
16
17 # pass path to prefix path
18 openocd_CPPFLAGS = \
19  -DPKGLIBDIR=\"$(pkglibdir)\" \
20  -DPKGBLDDATE=\"`date +%F-%R`\" \
21  -DPKGBLDREV=\"`$(top_srcdir)/guess-rev.sh`\" \
22  @CPPFLAGS@
23
24 # the library search path.
25 openocd_LDFLAGS = $(all_libraries) 
26 SUBDIRS = helper jtag xsvf svf target server flash pld
27
28 if IS_MINGW
29 MINGWLDADD = -lwsock32
30 else
31 MINGWLDADD =
32 endif
33
34 if FT2232_LIBFTDI
35 FTDI2232LIB = -lftdi -lusb
36 else
37 if PRESTO_LIBFTDI
38 FTDI2232LIB = -lftdi -lusb
39 else
40 FTDI2232LIB =
41 endif
42 endif
43
44 if USBPROG
45 LIBUSB = -lusb
46 else
47 if JLINK
48 LIBUSB = -lusb
49 else
50 if RLINK
51 LIBUSB = -lusb
52 else
53 if VSLLINK
54 LIBUSB = -lusb
55 else
56 LIBUSB =
57 endif
58 endif
59 endif
60 endif
61
62
63
64 openocd_LDADD = $(top_builddir)/src/xsvf/libxsvf.a $(top_builddir)/src/svf/libsvf.a \
65         $(top_builddir)/src/target/libtarget.a $(top_builddir)/src/jtag/libjtag.a \
66         $(top_builddir)/src/helper/libhelper.a \
67         $(top_builddir)/src/server/libserver.a $(top_builddir)/src/helper/libhelper.a \
68         $(top_builddir)/src/flash/libflash.a $(top_builddir)/src/target/libtarget.a \
69         $(top_builddir)/src/pld/libpld.a \
70         $(FTDI2232LIB) $(MINGWLDADD) $(LIBUSB)
71
72
73 if HTTPD
74 openocd_LDADD += -lmicrohttpd
75 endif
76
77
78
79 nobase_dist_pkglib_DATA = \
80         tcl/bitsbytes.tcl                       \
81         tcl/chip/atmel/at91/aic.tcl             \
82         tcl/chip/atmel/at91/at91sam7x128.tcl    \
83         tcl/chip/atmel/at91/at91sam7x256.tcl    \
84         tcl/chip/atmel/at91/pmc.tcl             \
85         tcl/chip/atmel/at91/rtt.tcl             \
86         tcl/chip/atmel/at91/usarts.tcl          \
87         tcl/chip/st/stm32/stm32.tcl             \
88         tcl/chip/st/stm32/stm32_rcc.tcl         \
89         tcl/chip/st/stm32/stm32_regs.tcl        \
90         tcl/cpu/arm/arm7tdmi.tcl                \
91         tcl/cpu/arm/arm920.tcl                  \
92         tcl/cpu/arm/arm946.tcl                  \
93         tcl/cpu/arm/arm966.tcl                  \
94         tcl/cpu/arm/cortex_m3.tcl               \
95         tcl/memory.tcl                          \
96         tcl/mmr_helpers.tcl                     \
97         tcl/readable.tcl
98
99 MAINTAINERCLEANFILES = Makefile.in