sha-2/Makefile

12 lines
124 B
Makefile
Raw Permalink Normal View History

CFLAGS = -Wall -Wextra -Wpedantic
2017-12-15 21:53:19 +00:00
.PHONY: all
all: test
./test
test: test.o sha-256.o
.PHONY: clean
clean:
rm test *.o