]> matita.cs.unibo.it Git - helm.git/blob - Makefile
branch for universe
[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/dama/    \
59         matita/contribs/        \
60         matita/library/assembly/        \
61         matita/library_auto/    \
62         $(NULL)
63 EXTRA_DIST =                    \
64         matita/AUTHORS          \
65         matita/LICENSE          \
66         matita/dist/BUGS        \
67         matita/dist/ChangeLog   \
68         matita/dist/COPYING     \
69         matita/dist/INSTALL     \
70         matita/dist/README      \
71         Makefile                \
72         Makefile.defs.in        \
73         $(NULL)
74 EXTRA_DIST_matita =                     \
75         matita/matitaGeneratedGui.ml    \
76         $(NULL)
77
78 distcheck: dist dist_extract dist_test
79
80 dist: dist_mktmpdir dist_pre dist_export dist_mktarball dist_rmtmpdir
81 dist/configure.ac: configure.ac matita/dist/configure.ac.sed
82         sed -f matita/dist/configure.ac.sed < $< > $@
83 dist/configure: dist/configure.ac
84         cd dist && autoconf
85 dist_mktmpdir:
86         test -d dist || mkdir dist
87 dist_rmtmpdir:
88         test -d dist && rm -rf dist/ || true
89 dist_pre:
90         $(MAKE) -C matita dist_pre
91 dist_export: dist/configure
92         rm -rf $(DISTDIR)
93         mkdir $(DISTDIR)
94         svn export components $(DISTDIR)/components
95         svn export matita $(DISTDIR)/matita
96         (cd $(DISTDIR) && find . -name .depend -exec rm \{\} \;)
97         (cd $(DISTDIR) && find . -name .depend.opt -exec rm \{\} \;)
98         (cd $(DISTDIR) && rm -rf $(CLEAN_ON_DIST))
99         cp $< $(DISTDIR)/configure
100         cp -r $(EXTRA_DIST) $(DISTDIR)
101         cp -r $(EXTRA_DIST_matita) $(DISTDIR)/matita
102         # distribute HTML version of the manual
103         mkdir -p $(DISTDIR)/docs/manual/
104         $(MAKE) -C matita/help/C/ install DESTDIR=$(CURDIR)/$(DISTDIR)/docs/manual/
105 dist_mktarball:
106         tar czf $(DISTDIR).tar.gz $(DISTDIR)
107         #tar cjf $(DISTDIR).tar.bz2 $(DISTDIR)
108         rm -rf $(DISTDIR)
109
110 dist_extract:
111         tar xzf $(DISTDIR).tar.gz
112 dist_test:
113         (cd $(DISTDIR)/ \
114           && ./configure \
115           && $(MAKE) world \
116           && $(MAKE) install DESTDIR=`pwd`/install)
117
118 .PHONY: dist dist_export dist_mktarball distcheck dist_extract dist_test dist_autotools
119
120 # }}} End of distribution stuff
121
122 .PHONY: all opt clean distclean
123
124 # vim: set foldmethod=marker: