]> arthur.barton.de Git - bup.git/blob - Makefile
Remove old hashsplit.c, since hashsplit.py replaces it.
[bup.git] / Makefile
1 CFLAGS=-Wall -g -O2 -Werror -I/usr/include/python2.5 -g -fwrapv -fPIC
2
3 default: all
4
5 all: hashsplit hashjoin datagen hashsplit.so
6
7 datagen: datagen.o
8
9 hashsplit.so: hashsplitmodule.o
10         $(CC) -shared -Wl,-Bsymbolic-functions -o $@ $<
11
12 test: all
13         ./hashsplit.py <testfile1 >tags1
14         ./hashsplit.py <testfile2 >tags2
15         diff -u tags1 tags2 || true
16         wc -c testfile1 testfile2
17         wc -l tags1 tags2
18         ./hashjoin <tags1 >out1
19         ./hashjoin <tags2 >out2
20         diff -u testfile1 out1
21         diff -u testfile2 out2
22
23 %: %.o
24         gcc -o $@ $< $(LDFLAGS) $(LIBS)
25         
26 %: %.py
27         rm -f $@
28         ln -s $^ $@
29         
30 %: %.sh
31         rm -f $@
32         ln -s $^ $@
33         
34 %.o: %.c
35         gcc -c -o $@ $^ $(CPPFLAGS) $(CFLAGS)
36
37 clean:
38         rm -f *.o *.so *~ hashsplit hashjoin hsplit hjoin datagen *.pyc \
39                 out[12] tags[12] .*~