Finalize project

This commit is contained in:
Nero 2022-09-11 14:51:37 +00:00
commit c75cbff329
4 changed files with 95 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
PROGS = sh_quote
CFLAGS = -std=c99 -pedantic
default: $(PROGS)
test: $(PROGS)
./test_sh_quote
clean:
rm -f $(PROGS)