c74a65d4c007a7472adfa5c5afdcda2e985709f1
[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_debug      = -O0 -g3 -DDEBUG_libfirm
29 CFLAGS_profile    = -O3 -pg -DNDEBUG -fno-inline
30 LINKFLAGS_profile = -pg
31 CFLAGS_optimize   = -O3 -DNDEBUG
32
33 # General flags
34 CFLAGS    += $(CFLAGS_$(variant))
35 CFLAGS    += -Wall -W -Wextra -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings
36 LINKFLAGS += $(LINKFLAGS_$(variant))
37 VPATH = $(srcdir)
38
39 .PHONY: all
40 all: firm
41
42 # This rule is necessary so that make does not abort if headers get deleted
43 # (the deleted header might still be referenced in a .d file)
44 %.h:
45         @:
46
47 # A very naive way to create a config.h if it is missing
48 $(srcdir)config.h:
49         @echo MakeConfig $@
50         $(Q)rm -f $@
51         $(Q)echo "#define libfirm_VERSION_MAJOR 1" >> $@
52         $(Q)echo "#define libfirm_VERSION_MICRO 0" >> $@
53         $(Q)echo "#define libfirm_VERSION_MINOR 20" >> $@
54
55 # libFirm
56 libfirm_DIRS := \
57         ir         \
58         ir/adt     \
59         ir/ana     \
60         ir/arch    \
61         ir/common  \
62         ir/debug   \
63         ir/obstack \
64         ir/ident   \
65         ir/net     \
66         ir/ir      \
67         ir/lower   \
68         ir/libcore \
69         ir/opt     \
70         ir/st      \
71         ir/stat    \
72         ir/tr      \
73         ir/tv      \
74         ir/kaps    \
75         ir/be
76 libfirm_SOURCES  = $(foreach dir,$(libfirm_DIRS),$(wildcard $(dir)/*.c))
77 libfirm_a        = $(builddir)/libfirm.a
78 libfirm_dll      = $(builddir)/libfirm$(DLLEXT)
79 libfirm_CPPFLAGS = -Iinclude/libfirm -Iinclude/libfirm/adt -I. $(foreach dir,$(libfirm_DIRS),-I$(dir))
80
81 .PHONY: firm
82 firm: $(libfirm_dll)
83
84 # backends
85 backends = amd64 arm ia32 sparc TEMPLATE
86
87 EMITTER_GENERATOR = $(srcdir)ir/be/scripts/generate_emitter.pl
88 REGALLOC_IF_GENERATOR = $(srcdir)ir/be/scripts/generate_regalloc_if.pl
89 OPCODES_GENERATOR = $(srcdir)ir/be/scripts/generate_new_opcodes.pl
90 MACHINE_GENERATOR = $(srcdir)ir/be/scripts/generate_machine.pl
91
92 define backend_template
93 $(1)_SOURCES = $$(wildcard ir/be/$(1)/*.c)
94 $(1)_SOURCES := $$(filter-out ir/be/$(1)/gen_%.c, $$($(1)_SOURCES))
95 $(1)_GEN_HEADERS =
96
97 $(1)_SPEC = ir/be/$(1)/$(1)_spec.pl
98
99 $$(srcdir)ir/be/$(1)/gen_$(1)_emitter.h $$(srcdir)ir/be/$(1)/gen_$(1)_emitter.c: $$($(1)_SPEC) $$(EMITTER_GENERATOR)
100         @echo GEN $$@
101         $(Q)$$(EMITTER_GENERATOR) $$($(1)_SPEC) $$(srcdir)ir/be/$(1)
102 $(1)_SOURCES += ir/be/$(1)/gen_$(1)_emitter.c
103 $(1)_GEN_HEADERS += ir/be/$(1)/gen_$(1)_emitter.h
104
105 $$(srcdir)ir/be/$(1)/gen_$(1)_regalloc_if.h $$(srcdir)ir/be/$(1)/gen_$(1)_regalloc_if.c: $$($(1)_SPEC) $$(REGALLOC_IF_GENERATOR)
106         @echo GEN $$@
107         $(Q)$$(REGALLOC_IF_GENERATOR) $$($(1)_SPEC) $$(srcdir)ir/be/$(1)
108 $(1)_SOURCES += ir/be/$(1)/gen_$(1)_regalloc_if.c
109 $(1)_GEN_HEADERS += ir/be/$(1)/gen_$(1)_regalloc_if.h
110
111 $$(srcdir)ir/be/$(1)/gen_$(1)_machine.h $$(srcdir)ir/be/$(1)/gen_$(1)_machine.c: $$($(1)_SPEC) $$(MACHINE_GENERATOR)
112         @echo GEN $$@
113         $(Q)$$(MACHINE_GENERATOR) $$($(1)_SPEC) $$(srcdir)ir/be/$(1)
114 $(1)_SOURCES += ir/be/$(1)/gen_$(1)_machine.c
115 $(1)_GEN_HEADERS += ir/be/$(1)/gen_$(1)_machine.h
116
117 $$(srcdir)ir/be/$(1)/gen_$(1)_new_nodes.h $$(srcdir)ir/be/$(1)/gen_$(1)_new_nodes.c.inl: $$($(1)_SPEC) $$(OPCODES_GENERATOR)
118         @echo GEN $$@
119         $(Q)$$(OPCODES_GENERATOR) $$($(1)_SPEC) $$(srcdir)ir/be/$(1)
120 $(1)_GEN_HEADERS += ir/be/$(1)/gen_$(1)_new_nodes.h
121
122 ir/be/$(1)/$(1)_new_nodes.c: ir/be/$(1)/gen_$(1)_new_nodes.c.inl
123
124 # We need to inform make of the headers it doesn't know yet...
125 $(1)_OBJECTS = $$($(1)_SOURCES:%.c=$$(builddir)/%.o)
126 $$($(1)_OBJECTS): $$($(1)_GEN_HEADERS)
127
128 libfirm_SOURCES += $$($(1)_SOURCES)
129 libfirm_DIRS += ir/be/$(1)
130 endef
131
132 $(foreach backend,$(backends),$(eval $(call backend_template,$(backend))))
133
134 # generators
135 IR_SPEC_GENERATED_FILES := \
136         include/libfirm/nodeops.h \
137         include/libfirm/opcodes.h \
138         ir/ir/gen_ir_cons.c.inl   \
139         ir/ir/gen_irop.c.inl      \
140         ir/ir/gen_irnode.c.inl    \
141         ir/ir/gen_irnode.h
142 IR_SPEC_GENERATOR := scripts/gen_ir.py
143 IR_SPEC := scripts/ir_spec.py
144
145 $(IR_SPEC_GENERATED_FILES): $(IR_SPEC_GENERATOR) $(IR_SPEC) scripts/spec_util.py
146         @echo GEN $@
147         $(Q)$(IR_SPEC_GENERATOR) $(IR_SPEC) ir/ir
148
149 IR_IO_GENERATOR := scripts/gen_ir_io.py
150 IR_IO_GENERATED_FILES := \
151         ir/ir/gen_irio_import.inl \
152         ir/ir/gen_irio_export.inl \
153         ir/ir/gen_irio_lex.inl
154
155 $(IR_IO_GENERATED_FILES): $(IR_IO_GENERATOR) $(IR_SPEC) scripts/spec_util.py
156         @echo GEN $@
157         $(Q)$(IR_IO_GENERATOR) $(IR_SPEC) ir/ir
158
159 ir/ir/irio.c: $(IR_IO_GENERATED_FILES)
160
161 libfirm_OBJECTS = $(libfirm_SOURCES:%.c=$(builddir)/%.o)
162 libfirm_DEPS    = $(libfirm_OBJECTS:%.o=%.d)
163 -include $(libfirm_DEPS)
164
165 $(libfirm_a): $(libfirm_OBJECTS)
166         @echo AR $@
167         $(Q)$(AR) ru $@ $^
168         @echo RANLIB $@
169         $(Q)$(RANLIB) $@
170
171 $(libfirm_dll): $(libfirm_OBJECTS)
172         @echo LINK $@
173         $(Q)$(LINK) -shared -o $@ $^
174
175 # Generic rules
176 UNUSED := $(shell mkdir -p $(libfirm_DIRS:%=$(builddir)/%))
177 $(builddir)/%.o: %.c $(IR_SPEC_GENERATED_FILES) config.h
178         @echo CC $@
179         $(Q)$(CC) $(CFLAGS) $(CPPFLAGS) $(libfirm_CPPFLAGS) -MMD -c -o $@ $<
180
181 .PHONY: clean
182 clean:
183         @echo CLEAN
184         $(Q)rm -f $(libfirm_OBJECTS)
185         $(Q)rm -f $(libfirm_TARGET)