]> arthur.barton.de Git - bup.git/blobdiff - Makefile
cleanup-mounts-under: Don't fail when /proc/mounts isn't readable
[bup.git] / Makefile
index a84c41f8b783298f17642fc482ac7dfbf30cfbc4..e522355cf21ba7418ed789149b24a7c0aee43699 100644 (file)
--- a/Makefile
+++ b/Makefile
-CFLAGS=-Wall -g -O2 -Werror -I/usr/include/python2.5 -g -fPIC
+OS:=$(shell uname | sed 's/[-_].*//')
+CFLAGS := -Wall -O2 -Werror -Wno-unknown-pragmas $(PYINCLUDE) $(CFLAGS)
+CFLAGS := -D_FILE_OFFSET_BITS=64 $(CFLAGS)
+SOEXT:=.so
+
+ifeq ($(OS),CYGWIN)
+  SOEXT:=.dll
+endif
+
+ifdef TMPDIR
+  test_tmp := $(TMPDIR)
+else
+  test_tmp := $(CURDIR)/t/tmp
+endif
 
 default: all
 
-all: bup-split bup-join bup-save bup randomgen chashsplit.so
+all: bup Documentation/all
+       t/configure-sampledata --setup
+
+bup: lib/bup/_version.py lib/bup/_helpers$(SOEXT) cmds
+
+Documentation/all: bup
+
+INSTALL=install
+PYTHON=python
+PREFIX=/usr
+MANDIR=$(DESTDIR)$(PREFIX)/share/man
+DOCDIR=$(DESTDIR)$(PREFIX)/share/doc/bup
+BINDIR=$(DESTDIR)$(PREFIX)/bin
+LIBDIR=$(DESTDIR)$(PREFIX)/lib/bup
+install: all
+       $(INSTALL) -d $(MANDIR)/man1 $(DOCDIR) $(BINDIR) \
+               $(LIBDIR)/bup $(LIBDIR)/cmd \
+               $(LIBDIR)/web $(LIBDIR)/web/static
+       [ ! -e Documentation/.docs-available ] || \
+         $(INSTALL) -m 0644 \
+               Documentation/*.1 \
+               $(MANDIR)/man1
+       [ ! -e Documentation/.docs-available ] || \
+         $(INSTALL) -m 0644 \
+               Documentation/*.html \
+               $(DOCDIR)
+       $(INSTALL) -pm 0755 bup $(BINDIR)
+       $(INSTALL) -pm 0755 \
+               cmd/bup-* \
+               $(LIBDIR)/cmd
+       $(INSTALL) -pm 0644 \
+               lib/bup/*.py \
+               $(LIBDIR)/bup
+       $(INSTALL) -pm 0755 \
+               lib/bup/*$(SOEXT) \
+               $(LIBDIR)/bup
+       $(INSTALL) -pm 0644 \
+               lib/web/static/* \
+               $(LIBDIR)/web/static/
+       $(INSTALL) -pm 0644 \
+               lib/web/*.html \
+               $(LIBDIR)/web/
+%/all:
+       $(MAKE) -C $* all
+
+%/clean:
+       $(MAKE) -C $* clean
+
+config/config.h: config/Makefile config/configure config/configure.inc \
+               $(wildcard config/*.in)
+       cd config && $(MAKE) config.h
 
-randomgen: randomgen.o
+lib/bup/_helpers$(SOEXT): \
+               config/config.h \
+               lib/bup/bupsplit.c lib/bup/_helpers.c lib/bup/csetup.py
+       @rm -f $@
+       cd lib/bup && \
+       LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" $(PYTHON) csetup.py build
+       cp lib/bup/build/*/_helpers$(SOEXT) lib/bup/
+
+.PHONY: lib/bup/_version.py
+lib/bup/_version.py:
+       rm -f $@ $@.new
+       ./format-subst.pl $@.pre >$@.new
+       mv $@.new $@
+
+runtests: all runtests-python runtests-cmdline
+
+runtests-python: all
+       test -e t/tmp || mkdir t/tmp
+       TMPDIR="$(test_tmp)" $(PYTHON) wvtest.py t/t*.py lib/*/t/t*.py
 
-chashsplit.so: chashsplitmodule.o
-       $(CC) -shared -o $@ $<
-       
-runtests: all
-       ./wvtest.py $(wildcard t/t*.py)
-       
 runtests-cmdline: all
-       @echo "Testing \"$@\" in Makefile:"
-       ./bup split -b <testfile1 >tags1
-       ./bup split -b testfile2 >tags2
-       diff -u tags1 tags2 || true
-       wc -c testfile1 testfile2
-       wc -l tags1 tags2
-       ./bup join $$(cat tags1) >out1
-       ./bup join <tags2 >out2
-       diff -u testfile1 out1
-       diff -u testfile2 out2
-       
-test: all runtests-cmdline
-       ./wvtestrun $(MAKE) runtests
-
-%: %.o
-       gcc -o $@ $< $(LDFLAGS) $(LIBS)
-       
-bup: bup.py
+       test -e t/tmp || mkdir t/tmp
+       TMPDIR="$(test_tmp)" t/test-fuse.sh
+       TMPDIR="$(test_tmp)" t/test-drecurse.sh
+       TMPDIR="$(test_tmp)" t/test-cat-file.sh
+       TMPDIR="$(test_tmp)" t/test-compression.sh
+       TMPDIR="$(test_tmp)" t/test-fsck.sh
+       TMPDIR="$(test_tmp)" t/test-index-clear.sh
+       TMPDIR="$(test_tmp)" t/test-index-check-device.sh
+       TMPDIR="$(test_tmp)" t/test-ls.sh
+       TMPDIR="$(test_tmp)" t/test-meta.sh
+       TMPDIR="$(test_tmp)" t/test-on.sh
+       TMPDIR="$(test_tmp)" t/test-restore-map-owner.sh
+       TMPDIR="$(test_tmp)" t/test-restore-single-file.sh
+       TMPDIR="$(test_tmp)" t/test-rm-between-index-and-save.sh
+       TMPDIR="$(test_tmp)" t/test-sparse-files.sh
+       TMPDIR="$(test_tmp)" t/test-command-without-init-fails.sh
+       TMPDIR="$(test_tmp)" t/test-redundant-saves.sh
+       TMPDIR="$(test_tmp)" t/test-save-creates-no-unrefs.sh
+       TMPDIR="$(test_tmp)" t/test-save-restore-excludes.sh
+       TMPDIR="$(test_tmp)" t/test-save-strip-graft.sh
+       TMPDIR="$(test_tmp)" t/test-import-rdiff-backup.sh
+       TMPDIR="$(test_tmp)" t/test-xdev.sh
+       TMPDIR="$(test_tmp)" t/test.sh
+
+stupid:
+       PATH=/bin:/usr/bin $(MAKE) test
+
+test: all
+       ./wvtestrun $(MAKE) PYTHON=$(PYTHON) runtests
+
+check: test
+
+bup: main.py
+       rm -f $@
+       ln -s $< $@
+
+cmds: \
+    $(patsubst cmd/%-cmd.py,cmd/bup-%,$(wildcard cmd/*-cmd.py)) \
+    $(patsubst cmd/%-cmd.sh,cmd/bup-%,$(wildcard cmd/*-cmd.sh))
+
+cmd/bup-%: cmd/%-cmd.py
        rm -f $@
-       ln -s $^ $@
-       
-bup-%: cmd-%.py
+       ln -s $*-cmd.py $@
+
+%: %.py
        rm -f $@
-       ln -s $^ $@
-       
+       ln -s $< $@
+
 bup-%: cmd-%.sh
        rm -f $@
-       ln -s $^ $@
-       
-%.o: %.c
-       gcc -c -o $@ $^ $(CPPFLAGS) $(CFLAGS)
-
-clean:
-       rm -f *.o *.so *~ .*~ *.pyc */*.pyc */*~ \
-               bup bup-split bup-join bup-save randomgen \
-               out[12] tags[12]
+       ln -s $< $@
+
+cmd/bup-%: cmd/%-cmd.sh
+       rm -f $@
+       ln -s $*-cmd.sh $@
+
+# update the local 'man' and 'html' branches with pregenerated output files, for
+# people who don't have pandoc (and maybe to aid in google searches or something)
+export-docs: Documentation/all
+       git update-ref refs/heads/man origin/man '' 2>/dev/null || true
+       git update-ref refs/heads/html origin/html '' 2>/dev/null || true
+       GIT_INDEX_FILE=gitindex.tmp; export GIT_INDEX_FILE; \
+       rm -f $${GIT_INDEX_FILE} && \
+       git add -f Documentation/*.1 && \
+       git update-ref refs/heads/man \
+               $$(echo "Autogenerated man pages for $$(git describe)" \
+                   | git commit-tree $$(git write-tree --prefix=Documentation) \
+                               -p refs/heads/man) && \
+       rm -f $${GIT_INDEX_FILE} && \
+       git add -f Documentation/*.html && \
+       git update-ref refs/heads/html \
+               $$(echo "Autogenerated html pages for $$(git describe)" \
+                   | git commit-tree $$(git write-tree --prefix=Documentation) \
+                               -p refs/heads/html)
+
+# push the pregenerated doc files to origin/man and origin/html
+push-docs: export-docs
+       git push origin man html
+
+# import pregenerated doc files from origin/man and origin/html, in case you
+# don't have pandoc but still want to be able to install the docs.
+import-docs: Documentation/clean
+       git archive origin/html | (cd Documentation; tar -xvf -)
+       git archive origin/man | (cd Documentation; tar -xvf -)
+
+clean: Documentation/clean config/clean
+       rm -f *.o lib/*/*.o *.so lib/*/*.so *.dll lib/*/*.dll *.exe \
+               .*~ *~ */*~ lib/*/*~ lib/*/*/*~ \
+               *.pyc */*.pyc lib/*/*.pyc lib/*/*/*.pyc \
+               bup bup-* cmd/bup-* lib/bup/_version.py randomgen memtest \
+               testfs.img lib/bup/t/testfs.img
+       if test -e t/mnt; then t/cleanup-mounts-under t/mnt; fi
+       if test -e t/mnt; then rm -r t/mnt; fi
+       if test -e t/tmp; then t/cleanup-mounts-under t/tmp; fi
+        # FIXME: migrate these to t/mnt/
+       if test -e bupmeta.tmp/testfs; \
+         then umount bupmeta.tmp/testfs || true; fi
+       if test -e lib/bup/t/testfs; \
+         then umount lib/bup/t/testfs || true; fi
+       if test -e bupmeta.tmp/testfs-limited; \
+         then umount bupmeta.tmp/testfs-limited || true; fi
+       rm -rf *.tmp *.tmp.meta t/*.tmp lib/*/*/*.tmp build lib/bup/build lib/bup/t/testfs
+       if test -e t/tmp; then t/force-delete t/tmp; fi
+       t/configure-sampledata --clean