11 lines
121 B
Makefile
11 lines
121 B
Makefile
PROGS = sh_quote
|
|
CFLAGS = -std=c99 -pedantic
|
|
|
|
default: $(PROGS)
|
|
|
|
test: $(PROGS)
|
|
./test_sh_quote
|
|
|
|
clean:
|
|
rm -f $(PROGS)
|