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