]> arthur.barton.de Git - bup.git/blob - Makefile
Merge branch 'master' into meta
[bup.git] / Makefile
1 OS:=$(shell uname | sed 's/[-_].*//')
2 CFLAGS:=-Wall -O2 -Werror $(PYINCLUDE)
3 SOEXT:=.so
4
5 ifeq ($(OS),CYGWIN)
6   SOEXT:=.dll
7 endif
8
9 default: all
10
11 all: bup Documentation/all
12
13 bup: lib/bup/_version.py lib/bup/_helpers$(SOEXT) cmds
14
15 Documentation/all: bup
16
17 INSTALL=install
18 PYTHON=python
19 PREFIX=/usr
20 MANDIR=$(DESTDIR)$(PREFIX)/share/man
21 DOCDIR=$(DESTDIR)$(PREFIX)/share/doc/bup
22 BINDIR=$(DESTDIR)$(PREFIX)/bin
23 LIBDIR=$(DESTDIR)$(PREFIX)/lib/bup
24 install: all
25         $(INSTALL) -d $(MANDIR)/man1 $(DOCDIR) $(BINDIR) \
26                 $(LIBDIR)/bup $(LIBDIR)/cmd $(LIBDIR)/tornado \
27                 $(LIBDIR)/web $(LIBDIR)/web/static
28         [ ! -e Documentation/.docs-available ] || \
29           $(INSTALL) -m 0644 \
30                 Documentation/*.1 \
31                 $(MANDIR)/man1
32         [ ! -e Documentation/.docs-available ] || \
33           $(INSTALL) -m 0644 \
34                 Documentation/*.html \
35                 $(DOCDIR)
36         $(INSTALL) -m 0755 bup $(BINDIR)
37         $(INSTALL) -m 0755 \
38                 cmd/bup-* \
39                 $(LIBDIR)/cmd
40         $(INSTALL) -m 0644 \
41                 lib/bup/*.py \
42                 $(LIBDIR)/bup
43         $(INSTALL) -m 0755 \
44                 lib/bup/*$(SOEXT) \
45                 $(LIBDIR)/bup
46         $(INSTALL) -m 0644 \
47                 lib/tornado/*.py \
48                 $(LIBDIR)/tornado
49         $(INSTALL) -m 0644 \
50                 lib/web/static/* \
51                 $(LIBDIR)/web/static/
52         $(INSTALL) -m 0644 \
53                 lib/web/*.html \
54                 $(LIBDIR)/web/
55 %/all:
56         $(MAKE) -C $* all
57
58 %/clean:
59         $(MAKE) -C $* clean
60         
61 config/config.h: config/Makefile config/configure config/configure.inc \
62                 $(wildcard config/*.in)
63         cd config && make config.h
64
65 lib/bup/_helpers$(SOEXT): \
66                 config/config.h \
67                 lib/bup/bupsplit.c lib/bup/_helpers.c lib/bup/csetup.py
68         @rm -f $@
69         cd lib/bup && \
70         LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" $(PYTHON) csetup.py build
71         cp lib/bup/build/*/_helpers$(SOEXT) lib/bup/
72
73 .PHONY: lib/bup/_version.py
74 lib/bup/_version.py:
75         rm -f $@ $@.new
76         ./format-subst.pl $@.pre >$@.new
77         mv $@.new $@
78
79 runtests: all runtests-python runtests-cmdline
80
81 runtests-python:
82         $(PYTHON) wvtest.py t/t*.py lib/*/t/t*.py
83
84 runtests-cmdline: all
85         t/test.sh
86         t/test-meta.sh
87
88 stupid:
89         PATH=/bin:/usr/bin $(MAKE) test
90
91 test: all
92         ./wvtestrun $(MAKE) PYTHON=$(PYTHON) runtests
93
94 check: test
95
96 bup: main.py
97         rm -f $@
98         ln -s $< $@
99
100 cmds: \
101     $(patsubst cmd/%-cmd.py,cmd/bup-%,$(wildcard cmd/*-cmd.py)) \
102     $(patsubst cmd/%-cmd.sh,cmd/bup-%,$(wildcard cmd/*-cmd.sh))
103
104 cmd/bup-%: cmd/%-cmd.py
105         rm -f $@
106         ln -s $*-cmd.py $@
107
108 %: %.py
109         rm -f $@
110         ln -s $< $@
111
112 bup-%: cmd-%.sh
113         rm -f $@
114         ln -s $< $@
115
116 cmd/bup-%: cmd/%-cmd.sh
117         rm -f $@
118         ln -s $*-cmd.sh $@
119
120 # update the local 'man' and 'html' branches with pregenerated output files, for
121 # people who don't have pandoc (and maybe to aid in google searches or something)
122 export-docs: Documentation/all
123         git update-ref refs/heads/man origin/man '' 2>/dev/null || true
124         git update-ref refs/heads/html origin/html '' 2>/dev/null || true
125         GIT_INDEX_FILE=gitindex.tmp; export GIT_INDEX_FILE; \
126         rm -f $${GIT_INDEX_FILE} && \
127         git add -f Documentation/*.1 && \
128         git update-ref refs/heads/man \
129                 $$(echo "Autogenerated man pages for $$(git describe)" \
130                     | git commit-tree $$(git write-tree --prefix=Documentation) \
131                                 -p refs/heads/man) && \
132         rm -f $${GIT_INDEX_FILE} && \
133         git add -f Documentation/*.html && \
134         git update-ref refs/heads/html \
135                 $$(echo "Autogenerated html pages for $$(git describe)" \
136                     | git commit-tree $$(git write-tree --prefix=Documentation) \
137                                 -p refs/heads/html)
138
139 # push the pregenerated doc files to origin/man and origin/html
140 push-docs: export-docs
141         git push origin man html
142
143 # import pregenerated doc files from origin/man and origin/html, in case you
144 # don't have pandoc but still want to be able to install the docs.
145 import-docs: Documentation/clean
146         git archive origin/html | (cd Documentation; tar -xvf -)
147         git archive origin/man | (cd Documentation; tar -xvf -)
148
149 clean: Documentation/clean
150         rm -f *.o lib/*/*.o *.so lib/*/*.so *.dll *.exe \
151                 .*~ *~ */*~ lib/*/*~ lib/*/*/*~ \
152                 *.pyc */*.pyc lib/*/*.pyc lib/*/*/*.pyc \
153                 bup bup-* cmd/bup-* lib/bup/_version.py randomgen memtest \
154                 out[12] out2[tc] tags[12] tags2[tc] \
155                 testfs.img lib/bup/t/testfs.img
156         rm -rf *.tmp t/*.tmp lib/*/*/*.tmp build lib/bup/build
157         if test -e testfs; then rmdir testfs; fi
158         if test -e lib/bup/t/testfs; then rmdir lib/bup/t/testfs; fi