usb: Fix for new compiler
[simavr] / examples / board_usb / Makefile
1
2 #       Copyright 2012 Torbjorn Tyridal <ttyridal@gmail.com>
3 #
4 #       This file is part of simavr.
5 #
6 #       simavr is free software: you can redistribute it and/or modify
7 #       it under the terms of the GNU General Public License as published by
8 #       the Free Software Foundation, either version 3 of the License, or
9 #       (at your option) any later version.
10 #
11 #       simavr is distributed in the hope that it will be useful,
12 #       but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #       GNU General Public License for more details.
15 #
16 #       You should have received a copy of the GNU General Public License
17 #       along with simavr.  If not, see <http://www.gnu.org/licenses/>.
18
19 target= simusb
20 firm_src = at90usb162_cdc_loopback.c
21 firmware = ${firm_src:.c=.hex}
22 simavr = ../../
23
24 IPATH = .
25 IPATH += ../parts
26 IPATH += ../vhci/include
27 IPATH += ../vhci
28 IPATH += ${simavr}/include
29 IPATH += ${simavr}/simavr/sim
30 #IPATH += /usr/local/include
31
32 VPATH = .
33 VPATH += ../parts
34
35 LDFLAGS += -lpthread -lusb_vhci -L../vhci/lib
36
37 all: obj ${firmware} ${target}
38
39 include ${simavr}/Makefile.common
40
41 board = ${OBJ}/${target}.elf
42
43 ${board} : ${OBJ}/vhci_usb.o
44 ${board} : ${OBJ}/${target}.o
45
46 ../vhci/lib/libusb_vhci.a:
47         @echo -n "BUILDIN $@ "
48         @{ export CC=;export CFLAGS=; $(MAKE) -j -C ../vhci >/tmp/vhci.build.log 2>&1 || \
49                 { echo "ERROR check /tmp/vhci.build.log"; exit 1; }; } && \
50                         echo " Done" 
51
52 vhci : ../vhci/lib/libusb_vhci.a 
53
54 clean-vhci:
55         $(MAKE) -C ../vhci clean
56
57 ${target}: vhci ${board}
58         @echo $@ done
59
60 clean: clean-${OBJ} clean-vhci
61         rm -rf *.a *.axf *.hex ${target} *.vcd