aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 20b6425149739084083c3fea2ec000bc1f817461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
bin_PROGRAMS = openocd

if ECOSBOARD
MAINFILE = ecosboard.c
else
MAINFILE = main.c jim.c
endif

openocd_SOURCES = $(MAINFILE) openocd.c startup.c

# set the include path found by configure
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/helper \
	-I$(top_srcdir)/src/jtag -I$(top_srcdir)/src/target -I$(top_srcdir)/src/xsvf -I$(top_srcdir)/src/server \
	-I$(top_srcdir)/src/flash -I$(top_srcdir)/src/pld $(all_includes)

# pass path to prefix path
openocd_CPPFLAGS = \
 -DPKGLIBDIR=\"$(pkglibdir)\" \
 -DPKGBLDDATE=\"`date +%F-%R`\" \
 -DPKGBLDREV=\"`$(top_srcdir)/guess-rev.sh`\" \
 @CPPFLAGS@

# the library search path.
openocd_LDFLAGS = $(all_libraries) 
SUBDIRS = helper jtag xsvf target server flash pld

if IS_MINGW
MINGWLDADD = -lwsock32
else
MINGWLDADD =
endif

if FT2232_LIBFTDI
FTDI2232LIB = -lftdi -lusb
else
if PRESTO_LIBFTDI
FTDI2232LIB = -lftdi -lusb
else
FTDI2232LIB =
endif
endif

if USBPROG
LIBUSB = -lusb
else
if JLINK
LIBUSB = -lusb
else
LIBUSB =
endif
endif

if IS_WIN32
if FTD2XXDIR
FTD2XXLDADD = @WITH_FTD2XX@/FTD2XX.lib
else
FTD2XXLDADD = -lftd2xx
endif
else
FTD2XXLDADD = -lftd2xx 
endif
  
if FT2232_FTD2XX
FTD2XXLIB = $(FTD2XXLDADD)
else
if PRESTO_FTD2XX
FTD2XXLIB = $(FTD2XXLDADD)
else
FTD2XXLIB =
endif
endif

openocd_LDADD = $(top_builddir)/src/xsvf/libxsvf.a \
	$(top_builddir)/src/target/libtarget.a $(top_builddir)/src/jtag/libjtag.a \
	$(top_builddir)/src/helper/libhelper.a \
	$(top_builddir)/src/server/libserver.a $(top_builddir)/src/helper/libhelper.a \
	$(top_builddir)/src/flash/libflash.a $(top_builddir)/src/target/libtarget.a \
	$(top_builddir)/src/pld/libpld.a \
	$(FTDI2232LIB) $(FTD2XXLIB) $(MINGWLDADD) $(LIBUSB)

	
	
nobase_dist_pkglib_DATA = \
	tcl/bitsbytes.tcl  \
	tcl/chip/atmel/at91/aic.tcl  \
	tcl/chip/atmel/at91/at91sam7x128.tcl  \
	tcl/chip/atmel/at91/at91sam7x256.tcl  \
	tcl/chip/atmel/at91/pmc.tcl  \
	tcl/chip/atmel/at91/rtt.tcl  \
	tcl/chip/atmel/at91/usarts.tcl  \
	tcl/cpu/arm/arm7tdmi.tcl  \
	tcl/cpu/arm/arm920.tcl  \
	tcl/cpu/arm/arm946.tcl  \
	tcl/cpu/arm/arm966.tcl  \
	tcl/memory.tcl  \
	tcl/mmr_helpers.tcl  \
	tcl/readable.tcl  

# Convert .tcl to .c file
startup.c: $(top_srcdir)/src/startup.tcl Makefile  $(top_srcdir)/src/file2c.tcl
	${TCLSH} $(top_srcdir)/src/file2c.tcl $(top_srcdir)/src/startup.tcl startup.c

# add startup.c to make clean list
CLEANFILES = startup.c