sh_quote/Makefile

14 lines
193 B
Makefile
Raw Permalink 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
2022-10-18 03:22:03 +02:00
install: $(PROGS)
install -D -m 0755 $(PROGS) $(DESTDIR)$(PREFIX)/bin
2022-09-11 16:51:37 +02:00
clean:
rm -f $(PROGS)