410b9d48cb705969f9334b0709f20ca1cc9c125d
[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 SHELL    = /bin/bash
25
26 IPATH = .
27 IPATH += ../parts
28 IPATH += ../vhci/include
29 IPATH += ../vhci
30 IPATH += ${simavr}/include
31 IPATH += ${simavr}/simavr/sim
32 #IPATH += /usr/local/include
33
34 VPATH = .
35 VPATH += ../parts
36
37 LDFLAGS += -lpthread -lusb_vhci -L../vhci/lib
38
39 all: obj ${firmware} ${target}
40
41 include ${simavr}/Makefile.common
42
43 board = ${OBJ}/${target}.elf
44
45 ${board} : ${OBJ}/vhci_usb.o
46 ${board} : ${OBJ}/${target}.o
47
48 ../vhci/lib/libusb_vhci.a:
49         @echo -n "BUILDIN $@ "
50         @{ make -j -C ../vhci >/tmp/vhci.build.log 2>&1 || \
51                 { echo "ERROR check /tmp/vhci.build.log"; exit 1; }; } && \
52                         echo " Done" 
53
54 vhci : ../vhci/lib/libusb_vhci.a 
55
56 clean-vhci:
57         make -C ../vhci clean
58
59 ${target}: vhci ${board}
60         @echo $@ done
61
62 clean: clean-${OBJ} clean-vhci
63         rm -rf *.a *.axf *.hex ${target} *.vcd