Added a real example on how to integrate simavr, etc
[simavr] / simavr / 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  = run_avr
20
21 CFLAGS  += -O3  -mfpmath=sse -msse2
22
23 cores   = ${wildcard cores/*.c}
24 cores_o = ${patsubst cores/%.c, obj/%.o, ${cores}}
25 sim             = ${wildcard sim/sim_*.c} ${wildcard sim/avr_*.c}
26 sim_o   = ${patsubst sim/%.c, obj/%.o, ${sim}}
27
28 VPATH   = .
29 VPATH   += cores
30 VPATH   += sim
31
32 IPATH   = .
33 IPATH   += sim
34 IPATH   += ../../shared
35 IPATH   += ../include
36 IPATH   += /opt/local/include
37
38 LFLAGS  = -L/opt/local/lib/
39
40 all:    obj libsimavr.a ${target}
41
42 obj/sim_%.o : cores/sim_%.c
43         @gcc $(CFLAGS) -MD \
44                 -I${AVR_INC}/include/ \
45                 $<  -c -o $@
46         @echo CORE $<
47
48 include ../Makefile.common
49
50 libsimavr.a     :       ${cores_o}
51 libsimavr.a     :       ${sim_o}
52         @echo AR $@
53         @ar cru $@ $^
54         @ranlib $@
55
56 ${target}       :       libsimavr.a
57 ${target}       :       obj/${target}.o
58         @gcc $(CFLAGS) $(LFLAGS) \
59                 ${^} -o $@ \
60                  $(LDFLAGS)
61         @echo LD $@
62
63 clean:
64         rm -rf ${target} obj *.a
65