]> arthur.barton.de Git - bup.git/blob - Makefile
Add (private for now) "bup xstat" command and use it in the metadata tests.
[bup.git] / Makefile
1 OS:=$(shell uname | sed 's/[-_].*//')
2 CFLAGS=-Wall -g -O2 -Werror $(PYINCLUDE) -g
3 ifneq ($(OS),CYGWIN)
4   CFLAGS += -fPIC
5 endif
6 SHARED=-shared
7 SOEXT:=.so
8
9 ifeq (${OS},Darwin)
10   MACHINE:=$(shell arch)
11   CFLAGS += -arch $(MACHINE)
12   SHARED = -dynamiclib
13 endif
14 ifeq ($(OS),CYGWIN)
15   LDFLAGS += -L/usr/bin
16   EXT:=.exe
17   SOEXT:=.dll
18 endif
19
20 default: all
21
22 all: bup Documentation/all
23
24 bup: lib/bup/_version.py lib/bup/_helpers$(SOEXT) cmds
25
26 Documentation/all: bup
27
28 INSTALL=install
29 PYTHON=python
30 MANDIR=$(DESTDIR)/usr/share/man
31 DOCDIR=$(DESTDIR)/usr/share/doc/bup
32 BINDIR=$(DESTDIR)/usr/bin
33 LIBDIR=$(DESTDIR)/usr/lib/bup
34 install: all
35         $(INSTALL) -d $(MANDIR)/man1 $(DOCDIR) $(BINDIR) \
36                 $(LIBDIR)/bup $(LIBDIR)/cmd $(LIBDIR)/tornado \
37                 $(LIBDIR)/web $(LIBDIR)/web/static
38         [ ! -e Documentation/.docs-available ] || \
39           $(INSTALL) -m 0644 \
40                 Documentation/*.1 \
41                 $(MANDIR)/man1
42         [ ! -e Documentation/.docs-available ] || \
43           $(INSTALL) -m 0644 \
44                 Documentation/*.html \
45                 $(DOCDIR)
46         $(INSTALL) -m 0755 bup $(BINDIR)
47         $(INSTALL) -m 0755 \
48                 cmd/bup-* \
49                 $(LIBDIR)/cmd
50         $(INSTALL) -m 0644 \
51                 lib/bup/*.py \
52                 $(LIBDIR)/bup
53         $(INSTALL) -m 0755 \
54                 lib/bup/*$(SOEXT) \
55                 $(LIBDIR)/bup
56         $(INSTALL) -m 0644 \
57                 lib/tornado/*.py \
58                 $(LIBDIR)/tornado
59         $(INSTALL) -m 0644 \
60                 lib/web/static/* \
61                 $(LIBDIR)/web/static/
62         $(INSTALL) -m 0644 \
63                 lib/web/*.html \
64                 $(LIBDIR)/web/
65 %/all:
66         $(MAKE) -C $* all
67
68 %/clean:
69         $(MAKE) -C $* clean
70
71 lib/bup/_helpers$(SOEXT): \
72                 lib/bup/bupsplit.c lib/bup/_helpers.c lib/bup/csetup.py
73         @rm -f $@
74         cd lib/bup && $(PYTHON) csetup.py build
75         cp lib/bup/build/*/_helpers$(SOEXT) lib/bup/
76
77 .PHONY: lib/bup/_version.py
78 lib/bup/_version.py:
79         rm -f $@ $@.new
80         ./format-subst.pl $@.pre >$@.new
81         mv $@.new $@
82
83 runtests: all runtests-python runtests-cmdline
84
85 runtests-python:
86         $(PYTHON) wvtest.py $(wildcard t/t*.py lib/*/t/t*.py)
87
88 runtests-cmdline: all
89         t/test.sh
90         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 %: %.o
101         $(CC) $(CFLAGS) (LDFLAGS) -o $@ $^ $(LIBS)
102
103 bup: main.py
104         rm -f $@
105         ln -s $< $@
106
107 cmds: $(patsubst cmd/%-cmd.py,cmd/bup-%,$(wildcard cmd/*-cmd.py))
108
109 cmd/bup-%: cmd/%-cmd.py
110         rm -f $@
111         ln -s $*-cmd.py $@
112
113 %: %.py
114         rm -f $@
115         ln -s $< $@
116
117 bup-%: cmd-%.sh
118         rm -f $@
119         ln -s $< $@
120
121 %.o: %.c
122         gcc -c -o $@ $< $(CPPFLAGS) $(CFLAGS)
123
124 clean: Documentation/clean
125         rm -f *.o lib/*/*.o *.so lib/*/*.so *.dll *.exe \
126                 .*~ *~ */*~ lib/*/*~ lib/*/*/*~ \
127                 *.pyc */*.pyc lib/*/*.pyc lib/*/*/*.pyc \
128                 bup bup-* cmd/bup-* lib/bup/_version.py randomgen memtest \
129                 out[12] out2[tc] tags[12] tags2[tc]
130         rm -rf *.tmp t/*.tmp lib/*/*/*.tmp build lib/bup/build