CC = gcc -std=c11 -pedantic -Wall

p1: p1.c
	$(CC) -o p1 p1.c -lcrypto

clean:
	rm -f a.out core p1
