]> arthur.barton.de Git - bup.git/blobdiff - Makefile
Name temp files from 'make test' as *.tmp to make them easier to clean.
[bup.git] / Makefile
index b2189bcd3e4a682c1fb3962c0ae21c493a8c6d48..a61b0ece0edcd5b97eb1cf5f4777034d64cdb44a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,33 +1,50 @@
-CFLAGS=-Wall -g -O2 -Werror -I/usr/include/python2.5 -g -fwrapv -fPIC
+CFLAGS=-Wall -g -O2 -Werror -I/usr/include/python2.5 -g -fPIC
 
 default: all
 
-all: hashsplit hashjoin datagen hashsplit.so
+all: bup-split bup-join bup-save bup randomgen chashsplit.so
 
-hashsplit: hashsplit.o
+randomgen: randomgen.o
 
-datagen: datagen.o
-
-hashjoin: hashjoin.sh
-
-hashsplit.so: hashsplitmodule.o
-       $(CC) -shared -Wl,-Bsymbolic-functions -o $@ $<
-
-test: all
-       ./hashsplit.py <testfile1 >tags1
-       ./hashsplit.py <testfile2 >tags2
-       diff -u tags1 tags2 || true
+chashsplit.so: chashsplitmodule.o
+       $(CC) -shared -o $@ $<
+       
+runtests: all
+       ./wvtest.py $(wildcard t/t*.py)
+       
+runtests-cmdline: all
+       @echo "Testing \"$@\" in Makefile:"
+       ./bup split --bench -b <testfile1 >tags1.tmp
+       ./bup split -vvvv -b testfile2 >tags2.tmp
+       ./bup split -t testfile2 >tags2t.tmp
+       ./bup split -c testfile2 >tags2c.tmp
+       diff -u tags1.tmp tags2.tmp || true
        wc -c testfile1 testfile2
-       wc -l tags1 tags2
-       ./hashjoin <tags1 >out1
-       ./hashjoin <tags2 >out2
-       diff -u testfile1 out1
-       diff -u testfile2 out2
+       wc -l tags1.tmp tags2.tmp
+       ./bup join $$(cat tags1.tmp) >out1.tmp
+       ./bup join <tags2.tmp >out2.tmp
+       ./bup join <tags2t.tmp >out2t.tmp
+       ./bup join <tags2c.tmp >out2c.tmp
+       diff -u testfile1 out1.tmp
+       diff -u testfile2 out2.tmp
+       diff -u testfile2 out2t.tmp
+       diff -u testfile2 out2c.tmp
+       
+test: all runtests-cmdline
+       ./wvtestrun $(MAKE) runtests
 
 %: %.o
        gcc -o $@ $< $(LDFLAGS) $(LIBS)
        
-%: %.sh
+bup: bup.py
+       rm -f $@
+       ln -s $^ $@
+       
+bup-%: cmd-%.py
+       rm -f $@
+       ln -s $^ $@
+       
+bup-%: cmd-%.sh
        rm -f $@
        ln -s $^ $@
        
@@ -35,5 +52,6 @@ test: all
        gcc -c -o $@ $^ $(CPPFLAGS) $(CFLAGS)
 
 clean:
-       rm -f *.o *.so *~ hashsplit hashjoin hsplit hjoin datagen *.pyc \
-               out[12] tags[12] .*~
+       rm -f *.o *.so *~ .*~ *.pyc */*.pyc */*~ \
+               bup bup-split bup-join bup-save randomgen \
+               out[12] out2[tc] tags[12] tags2[tc] *.tmp