source: trunk/FirmwareFX2/Makefile@ 16

Last change on this file since 16 was 8, checked in by demin, 15 years ago

remove rules for usbjtag.iic

File size: 2.7 KB
RevLine 
[7]1#-----------------------------------------------------------------------------
2# Makefile for usb_jtag FX2 firmware
3#-----------------------------------------------------------------------------
4# Copyright 2007 Kolja Waschk, ixo.de
5#-----------------------------------------------------------------------------
6# This code is part of usbjtag. usbjtag is free software; you can redistribute
7# it and/or modify it under the terms of the GNU General Public License as
8# published by the Free Software Foundation; either version 2 of the License,
9# or (at your option) any later version. usbjtag is distributed in the hope
10# that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
11# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details. You should have received a
13# copy of the GNU General Public License along with this program in the file
14# COPYING; if not, write to the Free Software Foundation, Inc., 51 Franklin
15# St, Fifth Floor, Boston, MA 02110-1301 USA
16#-----------------------------------------------------------------------------
17
18LIBDIR=fx2
19LIB=libfx2.lib
20
21ifeq (${HARDWARE},)
22 #HARDWARE=hw_basic
23 HARDWARE=hw_fynu
24endif
25
26CC=sdcc
27CFLAGS+=-mmcs51 --no-xinit-opt -I${LIBDIR} -D${HARDWARE}
28CFLAGS+=--opt-code-size
29
30# added by bram
31CFLAGS+=--stack-auto
32
33
34AS=asx8051
35ASFLAGS+=-plosgff
36
37LDFLAGS=--code-loc 0x0000 --code-size 0x1800
38LDFLAGS+=--xram-loc 0x1800 --xram-size 0x0800
39LDFLAGS+=-Wl '-b USBDESCSEG = 0xE100'
40LDFLAGS+=-L ${LIBDIR}
41
42%.rel : %.a51
43 $(AS) $(ASFLAGS) $<
44
45%.rel : %.c
46 $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
47
[8]48default: usbjtag.hex
[7]49
50usbjtag.hex: vectors.rel spi.rel usbjtag.rel dscr.rel eeprom.rel ${HARDWARE}.rel startup.rel ${LIBDIR}/${LIB}
51 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $+
52 packihx $@ > .tmp.hex
53 rm $@
54 mv .tmp.hex $@
55
56${LIBDIR}/${LIB}:
57 make -C ${LIBDIR}
58
59.PHONY: boot
60boot: usbjtag.hex
61 -test -e /dev/usb_jtag && /sbin/fxload -D /dev/usb_jtag -I usbjtag.hex -t fx2
62 -test -e /dev/tracii_xl2 && /sbin/fxload -D /dev/tracii_xl2 -I usbjtag.hex -t fx2
63 -test -e /dev/xilinx_xpcu && /sbin/fxload -D /dev/xilinx_xpcu -I usbjtag.hex -t fx2
64
65REF=/home/kawk/work/xilinx/xtern/xusbdfwu/xusbdfwu-1025.hex
66
67.PHONY: ref
68ref:
69 -test -e /dev/usb_jtag && /sbin/fxload -D /dev/usb_jtag -I ${REF} -t fx2
70 -test -e /dev/tracii_xl2 && /sbin/fxload -D /dev/tracii_xl2 -I ${REF} -t fx2
71 -test -e /dev/xilinx_xpcu && /sbin/fxload -D /dev/xilinx_xpcu -I ${REF} -t fx2
72
73dscr.rel: dscr.a51
74eeprom.rel: eeprom.c eeprom.h
75usbjtag.rel: usbjtag.c hardware.h eeprom.h
76${HARDWARE}.rel: ${HARDWARE}.c hardware.h
77
78.PHONY: clean distclean
79
80clean:
81 make -C ${LIBDIR} clean
[8]82 rm -f *.lst *.asm *.lib *.sym *.rel *.mem *.map *.rst *.lnk *.hex
[7]83
84distclean: clean
85
86
87
Note: See TracBrowser for help on using the repository browser.