Newer
Older
Import / applications / MakePDF / Crypto / Hash / Makefile
@John Ryland John Ryland on 22 Dec 2020 187 bytes import NUC files

pass: unittest
	@if ./unittest > pass ; then echo "PASS" ; else echo "FAIL" ; rm pass ; fi

unittest: main.cpp SHA256.cpp
	g++ main.cpp SHA256.cpp -o unittest

clean:
	rm pass unittest