Remove FSF address from GPL notices
[openocd.git] / src / jtag / drivers / Makefile.rlink
blob6168332c8c3af5845491dce9132b37729bed2592
1 #***************************************************************************
2 #*   Copyright (C) 2008 Lou Deluxe                                         *
3 #*   lou.openocd012@fixit.nospammail.net                                   *
4 #*                                                                         *
5 #*   This program is free software; you can redistribute it and/or modify  *
6 #*   it under the terms of the GNU General Public License as published by  *
7 #*   the Free Software Foundation; either version 2 of the License, or     *
8 #*   (at your option) any later version.                                   *
9 #*                                                                         *
10 #*   This program is distributed in the hope that it will be useful,       *
11 #*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12 #*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13 #*   GNU General Public License for more details.                          *
14 #*                                                                         *
15 #*   You should have received a copy of the GNU General Public License     *
16 #*   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
17 #***************************************************************************
19 TOP = ../../..
20 INTERFACE_NAME = rlink
22 PERL = perl
23 M4 = m4
25 TARGETDIR = ${TOP}/src/target
26 TOOLSDIR = ${TOP}/tools
28 MAKE_SPEED_TABLE = ${TOOLSDIR}/rlink_make_speed_table/rlink_make_speed_table
29 ST7_DTC_AS = ${TOOLSDIR}/st7_dtc_as/st7_dtc_as
31 OPENOCD = ${TOP}/src/openocd
32 OPENOCD_CONFIG = -s ${TARGETDIR}
33 OPENOCD_CONFIG += -f interface/rlink.cfg
34 OPENOCD_CONFIG += -f board/stm32f10x_128k_eval.cfg
36 PATCHFILE = /tmp/openocd_${INTERFACE_NAME}.diff.gz
38 # relative to ${TOP}
39 SVNADDFILES =
40 SVNADDFILES += src/target/interface/rlink.cfg
41 SVNADDFILES += src/jtag/${INTERFACE_NAME}.c
42 SVNADDFILES += src/jtag/${INTERFACE_NAME}
44 PRESCALERS = 64 11 8 2
46 DTCFILES =
47 DTCFILES += $(addsuffix _init.dtc, ${PRESCALERS})
48 DTCFILES += $(addsuffix _call.dtc, ${PRESCALERS})
50 default: rlink_speed_table.c clean
52 %_init.fsm: rlink_init.m4
53         ${M4} -P -DSHIFTER_PRESCALER=`echo "$@" | sed -e's/_.*//'` $< > $@
55 %_call.fsm: rlink_call.m4
56         ${M4} -P -DSHIFTER_PRESCALER=`echo "$@" | sed -e's/_.*//'` $< > $@
58 %.dtc: %.fsm
59         ${ST7_DTC_AS} -b -o $@ -i $< > /dev/null
61 rlink_speed_table.c: ${DTCFILES}
62         ${MAKE_SPEED_TABLE} ${PRESCALERS} > $@ || rm $@
64 clean:
65         -rm *.dtc *.fsm
67 distclean: clean
69 test: default
70         (cd ${TOP} && (rm src/jtag/${INTERFACE_NAME}.o; ${MAKE}))
71         ${OPENOCD} -d0 ${OPENOCD_CONFIG} -c init -c 'poll off'