2012-10-05 14:40:31 -04:00
|
|
|
.phony: all clean test
|
|
|
|
|
|
|
|
all: ext/digest/Makefile
|
|
|
|
make -C ext/digest
|
|
|
|
|
|
|
|
ext/digest/Makefile: ext/digest/extconf.rb
|
|
|
|
cd ext/digest && ruby extconf.rb
|
|
|
|
|
|
|
|
clean:
|
2013-05-20 11:00:21 -04:00
|
|
|
if [ -f ext/digest/Makefile ]; then make -C ext/digest clean; fi
|
2012-10-05 14:40:31 -04:00
|
|
|
rm -f ext/digest/Makefile
|
|
|
|
rm -f test/test_vectors.rb
|
|
|
|
|
|
|
|
test: all test/test_vectors.rb
|
|
|
|
ruby test/test_all.rb
|
|
|
|
|
|
|
|
test/test_vectors.rb: test/generate_tests.rb test/data/*
|
|
|
|
ruby test/generate_tests.rb > test/test_vectors.rb
|