8 lines
93 B
Makefile
8 lines
93 B
Makefile
CFLAGS = -Wall -Wextra -Wpedantic
|
|
|
|
test: test.o sha-256.o
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm test *.o
|