sh_quote/Makefile

11 lines
121 B
Makefile
Raw Normal View History

2022-09-11 16:51:37 +02:00
PROGS = sh_quote
CFLAGS = -std=c99 -pedantic
default: $(PROGS)
test: $(PROGS)
./test_sh_quote
clean:
rm -f $(PROGS)