zy1000 now listens for port 1234. Upon accepting connection reboot zy1000.
[openocd.git] / src / Makefile.am
blobdc9b44c02efcbfbe3a31664620315f4c95c950ab
1 SUBDIRS = helper jtag xsvf svf target server flash pld
3 lib_LTLIBRARIES = libopenocd.la
4 bin_PROGRAMS = openocd
6 if ECOSBOARD
7 MAINFILE = ecosboard.c
8 else
9 MAINFILE = main.c
10 endif
12 openocd_SOURCES = $(MAINFILE) 
13 openocd_LDADD = libopenocd.la
15 libopenocd_la_SOURCES = openocd.c
17 # set the include path found by configure
18 AM_CPPFLAGS = \
19         -I$(top_srcdir)/src \
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 if RELEASE
32 libopenocd_la_CPPFLAGS += -DRELSTR=\"Release\" -DPKGBLDREV=\"\"
33 else
34 libopenocd_la_CPPFLAGS += -DRELSTR=\"svn:\" -DPKGBLDREV=\"`$(top_srcdir)/guess-rev.sh $(top_srcdir)`\"
35 endif
37 # add default CPPFLAGS
38 libopenocd_la_CPPFLAGS += $(AM_CPPFLAGS) $(CPPFLAGS)
40 # the library search path.
41 libopenocd_la_LDFLAGS = $(all_libraries) 
43 if IS_MINGW
44 MINGWLDADD = -lwsock32
45 else
46 MINGWLDADD =
47 endif
49 if FT2232_LIBFTDI
50 FTDI2232LIB = -lftdi -lusb
51 else
52 if PRESTO_LIBFTDI
53 FTDI2232LIB = -lftdi -lusb
54 else
55 FTDI2232LIB =
56 endif
57 endif
59 if USBPROG
60 LIBUSB = -lusb
61 else
62 if JLINK
63 LIBUSB = -lusb
64 else
65 if RLINK
66 LIBUSB = -lusb
67 else
68 if VSLLINK
69 LIBUSB = -lusb
70 else
71 LIBUSB =
72 endif
73 endif
74 endif
75 endif
77 libopenocd_la_LIBADD = \
78         $(top_builddir)/src/xsvf/libxsvf.la \
79         $(top_builddir)/src/svf/libsvf.la \
80         $(top_builddir)/src/pld/libpld.la \
81         $(top_builddir)/src/jtag/libjtag.la \
82         $(top_builddir)/src/flash/libflash.la \
83         $(top_builddir)/src/target/libtarget.la \
84         $(top_builddir)/src/server/libserver.la \
85         $(top_builddir)/src/helper/libhelper.la \
86         $(FTDI2232LIB) $(MINGWLDADD) $(LIBUSB)
88 if HTTPD
89 libopenocd_la_LIBADD += -lmicrohttpd
90 endif
92 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
94 # The "quick" target builds executables & reinstalls the executables
95 # Primary use: developer types to quicken the edit/compile/debug
96 # cycle.  by not requiring a "full build and full install". Note the
97 # assumption is: You are only rebuilding the EXE.... and everything
98 # else is/was previously installed.
100 # use at your own risk 
101 quick: all install-binPROGRAMS