12 lines
124 B
Makefile
12 lines
124 B
Makefile
CFLAGS = -Wall -Wextra -Wpedantic
|
|
|
|
.PHONY: all
|
|
all: test
|
|
./test
|
|
|
|
test: test.o sha-256.o
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm test *.o
|