Removed some statics generating warnings.
[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
38 all: config.h Makefile libfirm.a
39
40 libfirm.a: subdir_all $(XOFILES) $(OFILES)
41         $(AR) $(ARFLAGS) $@.new $(XOFILES) $(OFILES)
42         $(RANLIB) $@.new
43         mv -f $@.new $@
44
45 testprograms:   libfirm.a
46         $(MAKE) -C testprograms
47
48
49 # generate program documentation
50 .PHONY: autodoc
51 autodoc: autodoc_xref $(AUTODOCDIR) $(GLOBALXREFFILE) autodoc_html $(INDEXFILE)
52
53 $(GLOBALXREFFILE): $(addsuffix /$(LOCALXREFSFILE), $(subdirs)) .xrefs
54 #       cat $^ > $@
55         $(RM) $@
56         find $(PWD) -name "*.xref" -print > $@
57
58 $(INDEXFILE): $(GLOBALXREFFILE)
59         $(AUTODOC) $(GLOBALXREFFILE) $@ INDEX HTML
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