sh_quote/Makefile
2022-09-11 14:53:38 +00:00

11 lines
121 B
Makefile

PROGS = sh_quote
CFLAGS = -std=c99 -pedantic
default: $(PROGS)
test: $(PROGS)
./test_sh_quote
clean:
rm -f $(PROGS)