]> sigrok.org Git - sigrok-firmware-fx2lafw.git/blob - fx2lib/lib/Makefile
Use makebin if objcopy is not available.
[sigrok-firmware-fx2lafw.git] / fx2lib / lib / Makefile
1 # Copyright (C) 2009 Ubixum, Inc. 
2
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
16
17 SOURCES = serial.c i2c.c delay.c setupdat.c gpif.c eputils.c $(wildcard interrupts/*.c)
18 FX2_OBJS = $(patsubst %.c,%.rel, $(SOURCES)) usbav.rel int4av.rel
19 INCLUDES = -I../include
20 SDCC = sdcc -mmcs51 $(SDCCFLAGS)
21 LIBS = fx2.lib
22
23 # The sdcc 8051 assembler binary has/had different names.
24 ifneq ($(shell which sdas8051 2>/dev/null),)
25 # Newer sdcc, Debian / Ubuntu
26 SDAS8051 = sdas8051
27 endif
28 ifneq ($(shell which sdcc-sdas8051 2>/dev/null),)
29 # Newer sdcc, Fedora
30 SDAS8051 = sdcc-sdas8051
31 endif
32 ifneq ($(shell which asx8051 2>/dev/null),)
33 # Older sdcc
34 SDAS8051 = asx8051
35 endif
36
37 all: $(LIBS)
38
39 $(LIBS): $(FX2_OBJS)
40         sdcclib fx2.lib $?
41
42 usbav.rel: usbav.a51
43         $(SDAS8051) -logs usbav.a51
44
45 int4av.rel: int4av.a51
46         $(SDAS8051) -logs int4av.a51
47
48 %.rel: %.c
49         $(SDCC) $(INCLUDES) -c $< -o $@
50
51 clean:
52         rm -f *.asm *.ihx *.lnk *.lst *.map *.mem *.rel *.rst *.sym
53         rm -f *.adb *.cdb *.lib
54         rm -f interrupts/*.asm interrupts/*.ihx interrupts/*.lnk
55         rm -f interrupts/*.lst interrupts/*.map interrupts/*.mem
56         rm -f interrupts/*.rel interrupts/*.rst interrupts/*.sym
57         rm -f interrupts/*.adb interrupts/*.dcb interrupts/*.lib
58