grumble/pkg/cryptstate/testgen/Makefile
2010-09-20 15:14:22 +02:00

9 lines
213 B
Makefile

.PHONY: default
default:
g++ test.cpp CryptState.cpp -o test -lcrypto
g++ test2.cpp CryptState.cpp -o test2 -lcrypto
g++ test3.cpp CryptState.cpp -o test3 -lcrypto
.PHONY: clean
clean:
rm -f test test2 test3