New example board: reprap
[simavr] / examples / board_reprap / Makefile
1
2 #       Copyright 2008, 2009 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= reprap
20 firm_src = ${wildcard atmega*.c}
21 firmware = ${firm_src:.c=.hex}
22 simavr = ../../
23
24 SHELL    = /bin/bash
25
26 IPATH = .
27 IPATH += ../parts
28 IPATH += ${simavr}/include
29 IPATH += ${simavr}/simavr/sim
30
31 VPATH = .
32 VPATH += ../parts
33
34 # for the Open Motion Controller board
35 CFLAGS += -DMOTHERBOARD=91
36
37 LDFLAGS += -lpthread -lutil
38 ifneq (${shell uname}, Darwin)
39 LDFLAGS += -lGL -lglut
40 else
41 LDFLAGS += -framework GLUT -framework OpenGL 
42 endif
43
44 all: obj ${firmware} ${target}
45
46 include ${simavr}/Makefile.common
47
48 board = ${OBJ}/${target}.elf
49
50 ${board} : ${OBJ}/button.o
51 ${board} : ${OBJ}/uart_pty.o
52 ${board} : ${OBJ}/thermistor.o
53 ${board} : ${OBJ}/${target}.o
54
55 ${target}: ${board}
56         @echo $@ done
57
58 clean: clean-${OBJ}
59         rm -rf *.a *.axf ${target} *.vcd