removed C99 constructs
[libfirm] / Makefile.in
1 #
2 # Project:     libFIRM
3 # File name:   Makefile.in
4 # Purpose:     Top level Makefile
5 # Author:      Till Riedel
6 # Modified by:
7 # Created:
8 # CVS-ID:      $Id$
9 # Copyright:   (c) 2002-2003 Universität Karlsruhe
10 # Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11 #
12
13
14 # top directory of the source tree
15 top_srcdir := @top_srcdir@
16 # directory with the sources for this directory
17 srcdir := @srcdir@
18 # top directory of the configured tree
19 topdir := .
20 # subdirectory under topdir
21 subdir := .
22 # do we want statistics
23 enable_statistics := @enable_statistics@
24 # do we want external description of effects
25 enable_external_effects := @enable_external_effects@
26 # do we want to test the firm internal backend stuff?
27 enable_backend := @enable_backend@
28 # do we want to use the libcore for debug and ADT support
29 enable_libcore := @enable_libcore@
30
31 # suck in values for the linking procedure:
32 LDFLAGS                 = @LDFLAGS@
33 LIBS                    = @LIBS@
34
35 build_subdirs := ir/adt ir/debug ir/tv ir/common ir/ident ir/ir \
36                 ir/opt ir/tr ir/ana ir/stat ir/ana2
37
38 ifeq (@enable_external_effects@,yes)
39 build_subdirs += ir/external
40 endif
41
42 ifeq (@enable_backend@,yes)
43 build_subdirs += ir/be
44 endif
45
46 subdirs := $(build_subdirs) ir/config
47
48 SOURCES := Makefile.in MakeRules.in MakeTargets\
49            aclocal.m4 config.h.in\
50            config.guess config.sub configure.in \
51            stamp-h.in install-sh README configure
52
53 SHARED_LIB = libfirm.so
54
55 INSTALL_LIBS = libfirm.a
56
57 GENFILES := stamp-h config.log config.cache
58 # config.status config.h.in $(srcdir)/stamp-h.in
59
60 include $(topdir)/MakeRules
61
62 XOFILES += $(addsuffix /subdir.o, $(build_subdirs))
63
64 include $(top_srcdir)/MakeTargets
65
66 # add target firmjni if configured with --enable-firmjni
67 all: firm
68
69 firm: libfirm.a
70
71 shared: $(SHARED_LIB)
72
73 $(OFILES): config.h Makefile
74
75 $(XOFILES): subdir_all
76
77 libfirm.a: $(XOFILES) $(OFILES)
78         $(AR) $(ARFLAGS) $@.new $(XOFILES) $(OFILES)
79         mv -f $@.new $@
80         $(RANLIB) $@
81
82 # dont know about xml here
83 libfirm.so: subdir_all $(XOFILES) $(OFILES)
84         ld -Bshareable -o ./libfirm.so $(XOFILES) -lm $(LDFLAGS) $(LIBS)
85
86 testprograms:   libfirm.a
87         $(MAKE) -C testprograms
88
89 firmjni:: libfirm.a
90         $(MAKE) -C firmjni
91
92 # gernerate program documentation
93 .PHONY: autodoc
94 autodoc: $(DOXYFILE)
95         $(DOXYGEN) $(DOXYFILE)
96
97 #${srcdir}/configure: configure.in aclocal.m4
98 $(srcdir)/configure: configure.in
99         cd $(srcdir) && autoconf
100
101 # autoheader might not change config.h.in, so touch a stamp file.
102 $(srcdir)/config.h.in: stamp-h.in
103
104 #${srcdir\1c2/stamp-h.in: configure.in aclocal.m4 acconfig.h \
105 $(srcdir)/stamp-h.in: configure.in
106         cd $(srcdir) && autoheader
107         echo timestamp > $(srcdir)/stamp-h.in
108
109 config.h: stamp-h
110 stamp-h: config.h.in config.status
111         ./config.status
112
113 config.status: configure
114         ./config.status --recheck
115
116 # add target test-firmjni if configured with --enable-firmjni
117 test::
118         $(MAKE) -C testprograms test;
119
120 test-firmjni::
121         $(MAKE) -C firmjni test;
122
123 test-reference::
124         $(MAKE) -C testprograms reference;
125
126 test-clean:
127         $(MAKE) -C testprograms realclean
128         $(MAKE) -C firmjni/testprograms clean;