Makefiles: Updated for build on BSD
[simavr] / examples / board_timer_64led / 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= timer_64led
20 firm_src = ${wildcard at*${target}.c}
21 firmware = ${firm_src:.c=.axf}
22 simavr = ../../
23
24 IPATH = .
25 IPATH += ../parts
26 IPATH += ${simavr}/include
27 IPATH += ${simavr}/simavr/sim
28
29 VPATH = .
30 VPATH += ../parts
31
32 LDFLAGS += -lpthread
33 ifneq (${shell uname}, Darwin)
34 LDFLAGS += -lGL -lglut
35 else
36 LDFLAGS += -framework GLUT -framework OpenGL 
37 endif
38
39 all: obj ${firmware} ${target}
40
41 include ${simavr}/Makefile.common
42
43 board = ${OBJ}/${target}.elf
44
45 ${board} : ${OBJ}/button.o
46 ${board} : ${OBJ}/hc595.o
47 ${board} : ${OBJ}/${target}.o
48
49 ${target}: ${board}
50         @echo $@ done
51
52 clean: clean-${OBJ}
53         rm -rf *.a *.axf ${target} *.vcd