clean goal should also remove generated code
[libfirm] / Makefile
1 # libfirm Makefile
2 #
3 # This is currently experimental and not fully supported, but we plan to replace
4 # the jambuild with this at some point in the future.
5 #
6 # Most variable names are similar to the names used by autoconf...
7 -include config.mak
8
9 # Some build configuration defaults
10 top_srcdir   ?=
11 top_builddir ?= build
12 host         ?= unknown-host
13 variant      ?= debug
14
15 srcdir       ?= $(top_srcdir)
16 builddir     ?= $(top_builddir)/$(variant)
17
18 # This hides the noisy commandline outputs. You can see them with "make Q="
19 Q ?= @
20
21 CC ?= cc
22 LINK ?= $(CC)
23 AR ?= ar ru
24 RANLIB ?= ranlib
25 DLLEXT ?= .so
26
27 # Variants
28 CFLAGS_all        = -fPIC
29 CFLAGS_debug      = $(CFLAGS_all) -O0 -g3 -DDEBUG_libfirm
30 CFLAGS_profile    = $(CFLAGS_all) -O3 -pg -DNDEBUG -fno-inline
31 LINKFLAGS_profile = -pg
32 CFLAGS_optimize   = $(CFLAGS_all) -O3 -DNDEBUG
33
34 # General flags
35 CFLAGS    += $(CFLAGS_$(variant))
36 CFLAGS    += -Wall -W -Wextra -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings
37 LINKFLAGS += $(LINKFLAGS_$(variant))
38 VPATH = $(srcdir)
39
40 REVISION ?= $(shell git describe --abbrev=40 --always --dirty --match '')
41
42 # Update revision.h if necessary
43 UNUSED := $(shell \
44         REV="\#define libfirm_VERSION_REVISION \"$(REVISION)\""; \
45         echo "$$REV" | cmp -s - firm_revision.h 2> /dev/null || echo "$$REV" > firm_revision.h \
46 )
47
48 .PHONY: all
49 all: firm
50
51 # This rule is necessary so that make does not abort if headers get deleted
52 # (the deleted header might still be referenced in a .d file)
53 %.h:
54         @:
55
56 # A very naive way to create a config.h if it is missing
57 $(srcdir)config.h:
58         @echo MakeConfig $@
59         $(Q)rm -f $@
60         $(Q)echo "#define libfirm_VERSION_MAJOR 1" >> $@
61         $(Q)echo "#define libfirm_VERSION_MICRO 0" >> $@
62         $(Q)echo "#define libfirm_VERSION_MINOR 20" >> $@
63
64 # libFirm
65 libfirm_DIRS := \
66         ir         \
67         ir/adt     \
68         ir/ana     \
69         ir/arch    \
70         ir/common  \
71         ir/debug   \
72         ir/obstack \
73         ir/ident   \
74         ir/net     \
75         ir/ir      \
76         ir/lower   \
77         ir/libcore \
78         ir/lpp     \
79         ir/opt     \
80         ir/st      \
81         ir/stat    \
82         ir/tr      \
83         ir/tv      \
84         ir/kaps    \
85         ir/be
86 libfirm_SOURCES  = $(foreach dir,$(libfirm_DIRS),$(wildcard $(dir)/*.c))
87 libfirm_a        = $(builddir)/libfirm.a
88 libfirm_dll      = $(builddir)/libfirm$(DLLEXT)
89 libfirm_CPPFLAGS = -Iinclude/libfirm -Iinclude/libfirm/adt -I. $(foreach dir,$(libfirm_DIRS),-I$(dir))
90
91 .PHONY: firm
92 firm: $(libfirm_dll)
93
94 # backends
95 backends = amd64 arm ia32 sparc TEMPLATE
96
97 EMITTER_GENERATOR = $(srcdir)ir/be/scripts/generate_emitter.pl
98 EMITTER_GENERATOR2 = $(srcdir)ir/be/scripts/generate_emitter_new.pl
99 REGALLOC_IF_GENERATOR = $(srcdir)ir/be/scripts/generate_regalloc_if.pl
100 OPCODES_GENERATOR = $(srcdir)ir/be/scripts/generate_new_opcodes.pl
101
102 define backend_template
103 $(1)_SOURCES = $$(wildcard ir/be/$(1)/*.c)
104 $(1)_SOURCES := $$(filter-out ir/be/$(1)/gen_%.c, $$($(1)_SOURCES))
105 $(1)_GEN_HEADERS =
106
107 $(1)_SPEC = ir/be/$(1)/$(1)_spec.pl
108
109 $$(srcdir)ir/be/$(1)/gen_$(1)_emitter.h $$(srcdir)ir/be/$(1)/gen_$(1)_emitter.c: $$($(1)_SPEC) $$(EMITTER_GENERATOR) $(EMITTER_GENERATOR2)
110         @echo GEN $$@
111         $(Q)$$(EMITTER_GENERATOR) $$($(1)_SPEC) $$(srcdir)ir/be/$(1)
112 $(1)_SOURCES += ir/be/$(1)/gen_$(1)_emitter.c
113 $(1)_GEN_HEADERS += ir/be/$(1)/gen_$(1)_emitter.h
114
115 $$(srcdir)ir/be/$(1)/gen_$(1)_regalloc_if.h $$(srcdir)ir/be/$(1)/gen_$(1)_regalloc_if.c: $$($(1)_SPEC) $$(REGALLOC_IF_GENERATOR)
116         @echo GEN $$@
117         $(Q)$$(REGALLOC_IF_GENERATOR) $$($(1)_SPEC) $$(srcdir)ir/be/$(1)
118 $(1)_SOURCES += ir/be/$(1)/gen_$(1)_regalloc_if.c
119 $(1)_GEN_HEADERS += ir/be/$(1)/gen_$(1)_regalloc_if.h
120
121 $$(srcdir)ir/be/$(1)/gen_$(1)_new_nodes.h $$(srcdir)ir/be/$(1)/gen_$(1)_new_nodes.c.inl: $$($(1)_SPEC) $$(OPCODES_GENERATOR)
122         @echo GEN $$@
123         $(Q)$$(OPCODES_GENERATOR) $$($(1)_SPEC) $$(srcdir)ir/be/$(1)
124 $(1)_GEN_HEADERS += ir/be/$(1)/gen_$(1)_new_nodes.h
125
126 ir/be/$(1)/$(1)_new_nodes.c: ir/be/$(1)/gen_$(1)_new_nodes.c.inl
127
128 # We need to inform make of the headers it doesn't know yet...
129 $(1)_OBJECTS = $$($(1)_SOURCES:%.c=$$(builddir)/%.o)
130 $$($(1)_OBJECTS): $$($(1)_GEN_HEADERS)
131
132 libfirm_SOURCES += $$($(1)_SOURCES)
133 libfirm_DIRS += ir/be/$(1)
134 endef
135
136 $(foreach backend,$(backends),$(eval $(call backend_template,$(backend))))
137
138 # generators
139 IR_SPEC_GENERATED_FILES := \
140         include/libfirm/nodeops.h \
141         include/libfirm/opcodes.h \
142         ir/ir/gen_ir_cons.c.inl   \
143         ir/ir/gen_irop.c.inl      \
144         ir/ir/gen_irnode.c.inl    \
145         ir/ir/gen_irnode.h
146 IR_SPEC_GENERATOR := scripts/gen_ir.py
147 IR_SPEC := scripts/ir_spec.py
148
149 $(IR_SPEC_GENERATED_FILES): $(IR_SPEC_GENERATOR) $(IR_SPEC) scripts/spec_util.py
150         @echo GEN $@
151         $(Q)$(IR_SPEC_GENERATOR) $(IR_SPEC) ir/ir
152
153 IR_IO_GENERATOR := scripts/gen_ir_io.py
154 IR_IO_GENERATED_FILES := \
155         ir/ir/gen_irio_import.inl \
156         ir/ir/gen_irio_export.inl \
157         ir/ir/gen_irio_lex.inl
158
159 $(IR_IO_GENERATED_FILES): $(IR_IO_GENERATOR) $(IR_SPEC) scripts/spec_util.py
160         @echo GEN $@
161         $(Q)$(IR_IO_GENERATOR) $(IR_SPEC) ir/ir
162
163 ir/ir/irio.c: $(IR_IO_GENERATED_FILES)
164
165 libfirm_OBJECTS = $(libfirm_SOURCES:%.c=$(builddir)/%.o)
166 libfirm_DEPS    = $(libfirm_OBJECTS:%.o=%.d)
167 -include $(libfirm_DEPS)
168
169 $(libfirm_a): $(libfirm_OBJECTS)
170         @echo AR $@
171         $(Q)$(AR) ru $@ $^
172         @echo RANLIB $@
173         $(Q)$(RANLIB) $@
174
175 $(libfirm_dll): $(libfirm_OBJECTS)
176         @echo LINK $@
177         $(Q)$(LINK) -shared -o $@ $^
178
179 # Generic rules
180 UNUSED := $(shell mkdir -p $(libfirm_DIRS:%=$(builddir)/%))
181 $(builddir)/%.o: %.c $(IR_SPEC_GENERATED_FILES) config.h
182         @echo CC $@
183         $(Q)$(CC) $(CFLAGS) $(CPPFLAGS) $(libfirm_CPPFLAGS) -MMD -c -o $@ $<
184
185 .PHONY: clean
186 clean:
187         @echo CLEAN
188         $(Q)rm -f $(libfirm_OBJECTS)
189         $(Q)rm -f $(libfirm_TARGET)
190         $(Q)rm -f $(shell find ir/ -name "gen_*.[ch]")