d2532043 TG |
1 | .PHONY: all test commit |
2 | |
3 | all: test |
4 | |
5 | test: bsv orig.pcm |
aabe5f7f |
6 | ./bsv | head -c7864320 | diff -s - orig.pcm |
d2532043 TG |
7 | |
8 | commit: test |
9 | git add bsv.c |
10 | git commit -m "new version" |
11 | |
12 | orig.pcm: |
aabe5f7f |
13 | ./bsv-orig | head -c7864320 > orig.pcm |