Makefiles: Remove executable bit from headers
[simavr] / simavr / 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 SIMAVR_VERSION  = ${shell git tag |tail -1|sed 's/[^0-9]*//'}
20 SIMAVR_REVISION = 2
21
22 target  = run_avr
23
24 CFLAGS  += -Werror
25 # tracing id useful especialy if you develop simavr core.
26 # it otherwise eat quite a bit of few cycles, even disabled
27 #CFLAGS += -DCONFIG_SIMAVR_TRACE=1
28
29 all:    obj config libsimavr ${target}
30
31 include ../Makefile.common
32
33 cores   = ${wildcard cores/*.c}
34 sim             = ${wildcard sim/sim_*.c} ${wildcard sim/avr_*.c}
35 sim_o   = ${patsubst sim/%.c, ${OBJ}/%.o, ${sim}}
36
37 VPATH   = cores
38 VPATH   += sim
39
40 IPATH   = sim
41 IPATH   += .
42 IPATH   += ../../shared
43 IPATH   += ../include
44     
45 #
46 # Static library
47 #
48 ${OBJ}/libsimavr.a      :       ${sim_o}
49 ifeq ($(V),1)
50         $(AR) cru $@ $^ && $(RANLIB) $@
51 else
52         @echo AR $@
53         @$(AR) cru $@ $^ && $(RANLIB) $@
54 endif
55
56 #
57 # Shared library (Linux)
58 #
59 ${OBJ}/libsimavr.so.1   :       ${sim_o}
60 ifeq ($(V),1)
61         $(CC) -shared -Wl,-soname,libsimavr.so.1 -o $@ $^
62 else
63         @echo SHARED $@
64         @$(CC) -shared -Wl,-soname,libsimavr.so.1 -o $@ $^
65 endif
66
67 ${OBJ}/libsimavr.so             : ${OBJ}/libsimavr.so.1
68         ln -sf libsimavr.so.1 $@
69
70 libsimavr       : config ${OBJ}/libsimavr.a
71 # shared library won't work that easily on non-linux
72 ifeq (${shell uname}, Linux)
73 libsimavr       :       ${OBJ}/libsimavr.so
74 endif
75
76 ${OBJ}/${target}.elf    : ${OBJ}/${target}.o
77
78 ${target}       : ${OBJ}/${target}.elf
79         ln -sf $< $@
80  
81 clean: clean-${OBJ}
82         rm -rf ${target} *.a *.so
83
84 DESTDIR = /usr/local
85 PREFIX = ${DESTDIR}
86
87 install : all
88         $(MKDIR) $(DESTDIR)/include/simavr/avr
89         $(INSTALL) -m644 sim/*.h $(DESTDIR)/include/simavr/
90         $(INSTALL) -m644 sim_core_*.h $(DESTDIR)/include/simavr/
91         $(INSTALL) -m644 ../include/*.h $(DESTDIR)/include/simavr/avr/
92         $(MKDIR) $(DESTDIR)/lib
93         $(INSTALL) ${OBJ}/libsimavr.a $(DESTDIR)/lib/
94         $(MKDIR) $(DESTDIR)/lib/pkgconfig/
95         sed -e "s|PREFIX|${PREFIX}|g" -e "s|VERSION|${SIMAVR_VERSION}|g" \
96                 simavr-avr.pc >$(DESTDIR)/lib/pkgconfig/simavr-avr.pc
97         sed -e "s|PREFIX|${PREFIX}|g" -e "s|VERSION|${SIMAVR_VERSION}|g" \
98                 simavr.pc >$(DESTDIR)/lib/pkgconfig/simavr.pc
99 ifeq (${shell uname}, Linux)
100         $(INSTALL) ${OBJ}/libsimavr.so.1 $(DESTDIR)/lib/
101         ln -sf libsimavr.so.1 $(DESTDIR)/lib/libsimavr.so
102 endif
103         $(MKDIR) $(DESTDIR)/bin
104         $(INSTALL) ${OBJ}/${target}.elf $(DESTDIR)/bin/simavr
105
106 # Needs 'fpm', oneline package manager. Install with 'gem install fpm'
107 # This generates 'mock' debian files, without all the policy, scripts
108 # and all the things normal debian requires. If debian decides to roll
109 # in simavr officialy, this section shall diseapear
110 debian: 
111         rm -rf /tmp/simavr-tmp && mkdir -p /tmp/simavr-tmp/usr && \
112         make install DESTDIR=/tmp/simavr-tmp/usr && \
113         (cd /tmp/simavr-tmp && \
114         fpm -s dir -t deb -C /tmp/simavr-tmp -n libsimavr -v $(SIMAVR_VERSION) \
115                 --iteration $(SIMAVR_REVISION) \
116                 -d 'libelf' \
117         --description "lean and mean Atmel AVR simulator: Runtime library" \
118         usr/lib/lib*.so* && \
119         fpm -s dir -t deb -C /tmp/simavr-tmp -n libsimavr-dev -v $(SIMAVR_VERSION) \
120                 --iteration $(SIMAVR_REVISION) \
121                 -d 'libsimavr >= $(SIMAVR_VERSION)' \
122         --description "lean and mean Atmel AVR simulator: Development files" \
123         usr/include usr/lib/lib*.a usr/lib/pkgconfig && \
124         fpm -s dir -t deb -C /tmp/simavr-tmp -n simavr -v $(SIMAVR_VERSION) \
125                 --iteration $(SIMAVR_REVISION) \
126                 -d 'libsimavr >= $(SIMAVR_VERSION)' \
127         --description "lean and mean Atmel AVR simulator: Executable" \
128         usr/bin ) && \
129         echo Done
130
131 config: ${OBJ}/cores.deps sim_core_config.h sim_core_decl.h
132
133 #
134 # this tries to preprocess all the cores and decide
135 # which ones have a chance of compiling at all. Some platform
136 # ship with old version of avr-gcc and associated and needs
137 # to be verified
138 #
139 ifeq ($(V), 1)
140 DEBUGLOG=/tmp/simavr_conf.log
141 else
142 DEBUGLOG=/dev/null
143 endif
144 sim_core_config.h ${OBJ}/cores.deps: $(cores) Makefile
145         @echo CONF $@
146         @conf=""; decl=""; array=""; \
147         mkdir -p ${OBJ} ; echo >${OBJ}/cores.deps ; echo >$(DEBUGLOG) ;\
148         for core in cores/*.c ; do \
149                 file=$$core; global=$${core/cores\/sim_}; global=$${global/.c}; \
150                 upper=$$(echo $$global|tr '[a-z]' '[A-Z]'); \
151                 if $(CC) -E $(CFLAGS) ${AVR_CPPFLAGS} $$file \
152                         >>$(DEBUGLOG) 2>&1 ; then \
153                         conf+="#define CONFIG_$$upper 1\n"; \
154                         obj=$${file/.c/.o} ; obj=$${obj/cores\/}; \
155                         printf "\$${OBJ}/libsimavr.a: \$${OBJ}/$$obj\n">>${OBJ}/cores.deps ; \
156                         printf "\$${OBJ}/libsimavr.so.1: \$${OBJ}/$$obj\n">>${OBJ}/cores.deps ; \
157                 else \
158                         echo WARNING $$file did not compile, check your avr-gcc toolchain; \
159                 fi \
160         done ; \
161         ( printf "// Autogenerated do not edit\n"; \
162           printf "#ifndef __SIM_CORE_CONFIG_H__\n#define __SIM_CORE_CONFIG_H__\n\n"; \
163           printf "$$conf\n"; \
164           printf "#endif\n"; \
165         ) >sim_core_config.h
166
167 #
168 # This take the config file that was generated, and create the static
169 # table of all available cores for name lookups, as well as a C
170 # config file
171 #  
172 sim_core_decl.h: sim_core_config.h $(cores) Makefile
173         @echo CONF $@
174         @decl=""; array=""; \
175         for core in $$(grep -r avr_kind_t cores/|awk -F '[ :]' '{print $$1 "=" $$3;}') ; do \
176                 file=$${core/=*}; global=$${core/*=}; \
177                 upper=$${file/cores\/sim_}; upper=$${upper/.c}; \
178                 upper=$$(echo $$upper|tr '[a-z]' '[A-Z]'); \
179                 decl+="#if CONFIG_$$upper\nextern avr_kind_t $$global;\n#endif\n"; \
180                 array+="#if CONFIG_$$upper\n\t&$$global,\n#endif\n"; \
181         done ; \
182         ( printf "// Autogenerated do not edit\n"; \
183           printf "#ifndef __SIM_CORE_DECL_H__\n#define __SIM_CORE_DECL_H__\n\n"; \
184           printf "#include \"sim_core_config.h\"\n";\
185           printf "$$decl\n" ;  \
186           printf "extern avr_kind_t * avr_kind[];\n"; \
187           printf "#ifdef AVR_KIND_DECL\navr_kind_t * avr_kind[] = {\n$$array\tNULL\n};\n#endif\n"; \
188           printf "#endif\n"; \
189         ) >sim_core_decl.h
190
191 -include ${OBJ}/cores.deps