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