.PHONY: clean run-test-tweakey nist_flags = -std=c99 -Wall -Wextra -Wshadow -fsanitize=address,undefined -O2 clean: -rm *.o -rm test-tweakey -rm tweakey_*.txt %.o: %.c gcc -c $< $(nist_flags) -o $@ test-tweakey: test-tweakey.o tweakey.o gcc $^ $(nist_flags) -o $@ run-test-tweakey: test-tweakey ./test-tweakey test-tweakey.o: tweakey.h tweakey.o: tweakey.h