9 lines
80 B
Makefile
9 lines
80 B
Makefile
CFLAGS = -std=c17 -Wall -Wextra
|
|
|
|
all: tac
|
|
|
|
clean:
|
|
$(RM) tac
|
|
|
|
.PHONY: all clean
|