blob: 065721c28cb1b7c3e3fbccd3957c8a663b2cd4e0 [file] [log] [blame]
CFLAGS += -std=gnu99 -O0 -g -Wall -Werror
all: run
openssl-hash: openssl-hash.c
$(CC) $(CFLAGS) -o $@ $^ -lcrypto
run: openssl-hash
./openssl-hash
python python-hash.py
clean:
rm -rf *.o openssl-hash