Makefile 291 Bytes
test : clean test.o
	./test/bin/test.o > report.xml
test.o :
	gcc test/src/test.c -L/usr/local/opt/openssl/lib -o test/bin/test.o -lcmocka -lssl -lcrypto
pull : 
	cd lib; \
	git clone https://github.com/openssl/openssl.git; \
	./config --prefix=


clean :
	rm -f ~/test/bin/test.o report.xml