]> matita.cs.unibo.it Git - helm.git/blob - Makefile
tagged 0.5.0-rc1
[helm.git] / Makefile
1 H=@
2
3 include Makefile.defs
4
5 SUBDIRS = components matita
6
7 ifeq ($(DISTRIBUTED),yes)
8 # 'world' is the default target when distributed, otherwise 'all' is
9 world: depend $(foreach d,$(SUBDIRS),rec@world@$(d))
10 all: depend $(foreach d,$(SUBDIRS),rec@all@$(d))
11 opt: depend $(foreach d,$(SUBDIRS),rec@opt@$(d))
12 else
13 all: $(foreach d,$(SUBDIRS),rec@all@$(d))
14 opt: $(foreach d,$(SUBDIRS),rec@opt@$(d))
15 world: depend $(foreach d,$(SUBDIRS),rec@world@$(d))
16 endif
17 depend: depend-stamp
18 depend-stamp:
19 ifeq ($(HAVE_OCAMLOPT),yes)
20  ifeq ($(DISTRIBUTED),yes)
21         $(MAKE) $(foreach d,$(SUBDIRS),rec@depend.opt@$(d))
22  else
23         $(MAKE) $(foreach d,$(SUBDIRS),rec@depend@$(d))
24  endif
25 else
26         $(MAKE) $(foreach d,$(SUBDIRS),rec@depend@$(d))
27 endif
28         $(H)touch depend-stamp
29
30 clean: 
31         $(H)make $(foreach d,$(SUBDIRS),rec@clean@$(d)) || true
32 distclean: 
33         $(H)make $(foreach d,$(SUBDIRS),rec@distclean@$(d)) || true
34         $(H)rm -rf .matita library-stamp depend-stamp
35 install-indep: $(foreach d,$(SUBDIRS),rec@install-indep@$(d))
36 install-arch: $(foreach d,$(SUBDIRS),rec@install-arch@$(d))
37 install: install-indep install-arch
38 uninstall: $(foreach d,$(SUBDIRS),rec@uninstall@$(d))
39
40 rec@%:
41         $(MAKE) -C $(word 2, $(subst @, ,$*)) $(word 1, $(subst @, ,$*)) DESTDIR=$(shell pwd)/$(DESTDIR)
42
43 # {{{ Distribution stuff
44
45 ifeq ($(DISTRIBUTED),yes)
46 library: library-stamp
47 library-stamp:
48         $(MAKE) -C matita/ dist_library
49         touch $@
50 endif
51
52 BASENAME = matita
53 NULL =
54 DISTDIR = $(BASENAME)-$(MATITA_VERSION)
55 CLEAN_ON_DIST =                 \
56         components/license      \
57         matita/TPTP/            \
58         matita/contribs/        \
59         $(NULL)
60 EXTRA_DIST =                    \
61         matita/AUTHORS          \
62         matita/LICENSE          \
63         matita/dist/BUGS        \
64         matita/dist/ChangeLog   \
65         matita/dist/COPYING     \
66         matita/dist/INSTALL     \
67         matita/dist/README      \
68         Makefile                \
69         Makefile.defs.in        \
70         $(NULL)
71 EXTRA_DIST_matita =                     \
72         matita/matitaGeneratedGui.ml    \
73         $(NULL)
74
75 distcheck: dist dist_extract dist_test
76
77 dist: dist_mktmpdir dist_pre dist_export dist_mktarball dist_rmtmpdir
78 dist/configure.ac: configure.ac matita/dist/configure.ac.sed
79         sed -f matita/dist/configure.ac.sed < $< > $@
80 dist/configure: dist/configure.ac
81         cd dist && autoconf
82 dist_mktmpdir:
83         test -d dist || mkdir dist
84 dist_rmtmpdir:
85         test -d dist && rm -rf dist/ || true
86 dist_pre:
87         $(MAKE) -C matita dist_pre
88 dist_export: dist/configure
89         rm -rf $(DISTDIR)
90         mkdir $(DISTDIR)
91         svn export components $(DISTDIR)/components
92         svn export matita $(DISTDIR)/matita
93         (cd $(DISTDIR) && find . -name .depend -exec rm \{\} \;)
94         (cd $(DISTDIR) && find . -name .depend.opt -exec rm \{\} \;)
95         (cd $(DISTDIR) && rm -rf $(CLEAN_ON_DIST))
96         cp $< $(DISTDIR)/configure
97         cp -r $(EXTRA_DIST) $(DISTDIR)
98         cp -r $(EXTRA_DIST_matita) $(DISTDIR)/matita
99         # distribute HTML version of the manual
100         mkdir -p $(DISTDIR)/docs/manual/
101         $(MAKE) -C matita/help/C/ install DESTDIR=$(CURDIR)/$(DISTDIR)/docs/manual/
102 dist_mktarball:
103         tar czf $(DISTDIR).tar.gz $(DISTDIR)
104         #tar cjf $(DISTDIR).tar.bz2 $(DISTDIR)
105         rm -rf $(DISTDIR)
106
107 dist_extract:
108         tar xzf $(DISTDIR).tar.gz
109 dist_test:
110         (cd $(DISTDIR)/ \
111           && ./configure \
112           && $(MAKE) world \
113           && $(MAKE) install DESTDIR=`pwd`/install)
114
115 .PHONY: dist dist_export dist_mktarball distcheck dist_extract dist_test dist_autotools
116
117 # }}} End of distribution stuff
118
119 .PHONY: all opt clean distclean
120
121 # vim: set foldmethod=marker: