More doxygen comments
[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 # gernerate program documentation
50 .PHONY: autodoc
51 autodoc: $(AUTODOCDIR) $(AUTODOCINDEXFILE)
52
53 .PHONY: $(AUTDOCINDEXFILE)
54 $(AUTODOCINDEXFILE): $(CFILES) $(HFILES)
55         $(AUTODOC) $(srcdir)/$(AUTODOCFILE)
56
57
58 #${srcdir}/configure: configure.in aclocal.m4
59 $(srcdir)/configure: configure.in
60         cd $(srcdir) && autoconf
61
62 # autoheader might not change config.h.in, so touch a stamp file.
63 $(srcdir)/config.h.in: stamp-h.in
64
65 #${srcdir\1c2/stamp-h.in: configure.in aclocal.m4 acconfig.h \
66 $(srcdir)/stamp-h.in: configure.in
67         cd $(srcdir) && autoheader
68         echo timestamp > $(srcdir)/stamp-h.in
69
70 config.h: stamp-h
71 stamp-h: config.h.in config.status
72         ./config.status
73
74 config.status: configure
75         ./config.status --recheck
76
77 test::
78         $(MAKE) -C testprograms test;
79
80 test-reference::
81         $(MAKE) -C testprograms reference;
82
83 test-clean:
84         $(MAKE) -C testprograms realclean