]> arthur.barton.de Git - bup.git/blob - Makefile
Fix GNU make detection and usage.
[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 \
83                 $(wildcard t/t*.py) \
84                 $(filter-out lib/bup/t/tmetadata.py,$(wildcard lib/*/t/t*.py))
85         [ -z "${TEST_META}" ] || \
86         $(PYTHON) wvtest.py lib/bup/t/tmetadata.py
87
88 runtests-cmdline: all
89         t/test.sh
90         [ -z "${TEST_META}" ] || t/test-meta.sh
91
92 stupid:
93         PATH=/bin:/usr/bin $(MAKE) test
94
95 test: all
96         ./wvtestrun $(MAKE) PYTHON=$(PYTHON) runtests
97
98 check: test
99
100 bup: main.py
101         rm -f $@
102         ln -s $< $@
103
104 cmds: \
105     $(patsubst cmd/%-cmd.py,cmd/bup-%,$(wildcard cmd/*-cmd.py)) \
106     $(patsubst cmd/%-cmd.sh,cmd/bup-%,$(wildcard cmd/*-cmd.sh))
107
108 cmd/bup-%: cmd/%-cmd.py
109         rm -f $@
110         ln -s $*-cmd.py $@
111
112 %: %.py
113         rm -f $@
114         ln -s $< $@
115
116 bup-%: cmd-%.sh
117         rm -f $@
118         ln -s $< $@
119
120 cmd/bup-%: cmd/%-cmd.sh
121         rm -f $@
122         ln -s $*-cmd.sh $@
123
124 # update the local 'man' and 'html' branches with pregenerated output files, for
125 # people who don't have pandoc (and maybe to aid in google searches or something)
126 export-docs: Documentation/all
127         git update-ref refs/heads/man origin/man '' 2>/dev/null || true
128         git update-ref refs/heads/html origin/html '' 2>/dev/null || true
129         GIT_INDEX_FILE=gitindex.tmp; export GIT_INDEX_FILE; \
130         rm -f $${GIT_INDEX_FILE} && \
131         git add -f Documentation/*.1 && \
132         git update-ref refs/heads/man \
133                 $$(echo "Autogenerated man pages for $$(git describe)" \
134                     | git commit-tree $$(git write-tree --prefix=Documentation) \
135                                 -p refs/heads/man) && \
136         rm -f $${GIT_INDEX_FILE} && \
137         git add -f Documentation/*.html && \
138         git update-ref refs/heads/html \
139                 $$(echo "Autogenerated html pages for $$(git describe)" \
140                     | git commit-tree $$(git write-tree --prefix=Documentation) \
141                                 -p refs/heads/html)
142
143 # push the pregenerated doc files to origin/man and origin/html
144 push-docs: export-docs
145         git push origin man html
146
147 # import pregenerated doc files from origin/man and origin/html, in case you
148 # don't have pandoc but still want to be able to install the docs.
149 import-docs: Documentation/clean
150         git archive origin/html | (cd Documentation; tar -xvf -)
151         git archive origin/man | (cd Documentation; tar -xvf -)
152
153 clean: Documentation/clean
154         rm -f *.o lib/*/*.o *.so lib/*/*.so *.dll lib/*/*.dll *.exe \
155                 .*~ *~ */*~ lib/*/*~ lib/*/*/*~ \
156                 *.pyc */*.pyc lib/*/*.pyc lib/*/*/*.pyc \
157                 bup bup-* cmd/bup-* lib/bup/_version.py randomgen memtest \
158                 out[12] out2[tc] tags[12] tags2[tc] \
159                 testfs.img lib/bup/t/testfs.img
160         rm -rf *.tmp t/*.tmp lib/*/*/*.tmp build lib/bup/build
161         if test -e testfs; then rmdir testfs; fi
162         if test -e lib/bup/t/testfs; then rmdir lib/bup/t/testfs; fi