Changed behaviour of new_ir_mode to accept all predefined modes.
[libfirm] / Makefile.in
1 # Hey Emacs, this is a -*- makefile -*-
2 #
3 # libFIRM Project
4 #
5 # Top level Makefile
6 # $Id$
7 #
8
9
10 # top directory of the source tree
11 top_srcdir := @top_srcdir@
12 # directory with the sources for this directory
13 srcdir := @srcdir@
14 # top directory of the configured tree
15 topdir := .
16 # subdirectory under topdir
17 subdir := .
18
19 subdirs := ir ir/adt ir/debug ir/tv ir/common ir/ident ir/ir ir/tr ir/ana ir/st
20
21 SOURCES := Makefile.in MakeRules.in MakeTargets\
22            aclocal.m4 config.h.in\
23            config.guess config.sub configure.in \
24            stamp-h.in install-sh README configure
25
26 INSTALL_LIBS = libfirm.a
27
28 GENFILES := stamp-h config.log config.cache
29 # config.status config.h.in $(srcdir)/stamp-h.in
30
31 include $(topdir)/MakeRules
32
33 XOFILES += $(addsuffix /subdir.o, $(subdirs))
34
35 include $(top_srcdir)/MakeTargets
36
37 # add target firmjni if configured with --enable-firmjni
38 all: config.h Makefile libfirm.a
39
40 firm: config.h Makefile libfirm.a
41
42 libfirm.a: subdir_all $(XOFILES) $(OFILES)
43         $(AR) $(ARFLAGS) $@.new $(XOFILES) $(OFILES)
44         $(RANLIB) $@.new
45         mv -f $@.new $@
46
47 testprograms:   libfirm.a
48         $(MAKE) -C testprograms
49
50 firmjni:: libfirm.a
51         $(MAKE) -C firmjni
52
53 # gernerate program documentation
54 .PHONY: autodoc
55 autodoc: $(AUTODOCDIR) $(AUTODOCINDEXFILE)
56
57 .PHONY: $(AUTDOCINDEXFILE)
58 $(AUTODOCINDEXFILE): $(CFILES) $(HFILES)
59         $(AUTODOC) $(AUTODOCFILE)
60
61
62 #${srcdir}/configure: configure.in aclocal.m4
63 $(srcdir)/configure: configure.in
64         cd $(srcdir) && autoconf
65
66 # autoheader might not change config.h.in, so touch a stamp file.
67 $(srcdir)/config.h.in: stamp-h.in
68
69 #${srcdir\1c2/stamp-h.in: configure.in aclocal.m4 acconfig.h \
70 $(srcdir)/stamp-h.in: configure.in
71         cd $(srcdir) && autoheader
72         echo timestamp > $(srcdir)/stamp-h.in
73
74 config.h: stamp-h
75 stamp-h: config.h.in config.status
76         ./config.status
77
78 config.status: configure
79         ./config.status --recheck
80
81 # add target test-firmjni if configured with --enable-firmjni
82 test::
83         $(MAKE) -C testprograms test;
84
85 test-firmjni::
86         $(MAKE) -C firmjni test;
87
88 test-reference::
89         $(MAKE) -C testprograms reference;
90
91 test-clean:
92         $(MAKE) -C testprograms realclean
93         $(MAKE) -C firmjni/testprograms clean;