]> arthur.barton.de Git - bup.git/blob - Makefile
Revert "Makefile: avoid using -Werror with clang for now."
[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-map-owner.sh
93         t/test-restore-single-file.sh
94         t/test-rm-between-index-and-save.sh
95         t/test-command-without-init-fails.sh
96         t/test-redundant-saves.sh
97         t/test.sh
98
99 stupid:
100         PATH=/bin:/usr/bin $(MAKE) test
101
102 test: all
103         ./wvtestrun $(MAKE) PYTHON=$(PYTHON) runtests
104
105 check: test
106
107 bup: main.py
108         rm -f $@
109         ln -s $< $@
110
111 cmds: \
112     $(patsubst cmd/%-cmd.py,cmd/bup-%,$(wildcard cmd/*-cmd.py)) \
113     $(patsubst cmd/%-cmd.sh,cmd/bup-%,$(wildcard cmd/*-cmd.sh))
114
115 cmd/bup-%: cmd/%-cmd.py
116         rm -f $@
117         ln -s $*-cmd.py $@
118
119 %: %.py
120         rm -f $@
121         ln -s $< $@
122
123 bup-%: cmd-%.sh
124         rm -f $@
125         ln -s $< $@
126
127 cmd/bup-%: cmd/%-cmd.sh
128         rm -f $@
129         ln -s $*-cmd.sh $@
130
131 # update the local 'man' and 'html' branches with pregenerated output files, for
132 # people who don't have pandoc (and maybe to aid in google searches or something)
133 export-docs: Documentation/all
134         git update-ref refs/heads/man origin/man '' 2>/dev/null || true
135         git update-ref refs/heads/html origin/html '' 2>/dev/null || true
136         GIT_INDEX_FILE=gitindex.tmp; export GIT_INDEX_FILE; \
137         rm -f $${GIT_INDEX_FILE} && \
138         git add -f Documentation/*.1 && \
139         git update-ref refs/heads/man \
140                 $$(echo "Autogenerated man pages for $$(git describe)" \
141                     | git commit-tree $$(git write-tree --prefix=Documentation) \
142                                 -p refs/heads/man) && \
143         rm -f $${GIT_INDEX_FILE} && \
144         git add -f Documentation/*.html && \
145         git update-ref refs/heads/html \
146                 $$(echo "Autogenerated html pages for $$(git describe)" \
147                     | git commit-tree $$(git write-tree --prefix=Documentation) \
148                                 -p refs/heads/html)
149
150 # push the pregenerated doc files to origin/man and origin/html
151 push-docs: export-docs
152         git push origin man html
153
154 # import pregenerated doc files from origin/man and origin/html, in case you
155 # don't have pandoc but still want to be able to install the docs.
156 import-docs: Documentation/clean
157         git archive origin/html | (cd Documentation; tar -xvf -)
158         git archive origin/man | (cd Documentation; tar -xvf -)
159
160 clean: Documentation/clean config/clean
161         rm -f *.o lib/*/*.o *.so lib/*/*.so *.dll lib/*/*.dll *.exe \
162                 .*~ *~ */*~ lib/*/*~ lib/*/*/*~ \
163                 *.pyc */*.pyc lib/*/*.pyc lib/*/*/*.pyc \
164                 bup bup-* cmd/bup-* lib/bup/_version.py randomgen memtest \
165                 out[12] out2[tc] tags[12] tags2[tc] \
166                 testfs.img lib/bup/t/testfs.img
167         umount t/mnt/* || true
168         if test -e t/mnt; then rm -r t/mnt; fi
169         # FIXME: migrate these to t/mnt/
170         if test -e bupmeta.tmp/testfs; \
171           then umount bupmeta.tmp/testfs || true; fi
172         if test -e lib/bup/t/testfs; \
173           then umount lib/bup/t/testfs || true; fi
174         if test -e bupmeta.tmp/testfs-limited; \
175           then umount bupmeta.tmp/testfs-limited || true; fi
176         rm -rf *.tmp *.tmp.meta t/*.tmp lib/*/*/*.tmp build lib/bup/build lib/bup/t/testfs
177         if test -e t/tmp; then rm -r t/tmp; fi
178         t/configure-sampledata --clean