651f0810e9ba5e61e072cc88f78a68aa6e1fbf86
[simavr] / examples / board_i2ctest / Makefile
1
2 #       Copyright 2008-2012 Michel Pollet <buserror@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= i2ctest
20 firm_src = ${wildcard at*${board}.c}
21 firmware = ${firm_src:.c=.axf}
22 simavr = ../..
23
24 SHELL    = /bin/bash
25
26 IPATH = .
27 IPATH += ${simavr}/examples/shared
28 IPATH += ${simavr}/examples/parts
29 IPATH += ${simavr}/include
30 IPATH += ${simavr}/simavr/sim
31
32 VPATH = .
33 VPATH += ${simavr}/examples/shared
34 VPATH += ${simavr}/examples/parts
35
36
37 all: obj ${firmware} ${target} 
38
39 include ${simavr}/Makefile.common
40
41 atmega1280_${target}.axf: atmega1280_${target}.c
42 atmega1280_${target}.axf: ${simavr}/examples/shared/avr_twi_master.c
43 atmega1280_${target}.axf: ${simavr}/examples/shared/avr_twi_master.h
44
45 board = ${OBJ}/${target}.elf
46
47 ${board} : ${OBJ}/${target}.o
48 ${board} : ${OBJ}/i2c_eeprom.o
49
50 ${target}: ${board}
51         @echo $@ done
52
53 clean: clean-${OBJ}
54         rm -rf *.hex *.a *.axf ${target} *.vcd .*.swo .*.swp .*.swm .*.swn