diff options
author | bptato <nincsnevem662@gmail.com> | 2023-09-30 18:02:48 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-09-30 19:02:05 +0200 |
commit | 31fbd611aa107cc023dcf1e1358f19ff58f14075 (patch) | |
tree | c3360c2f4575a249bb30f18b746ab3a0ce0c91b2 /bonus/gmi2html/Makefile | |
parent | bb2c7cb87a99f790b6c741f85de666dd7aeae10c (diff) | |
download | chawan-31fbd611aa107cc023dcf1e1358f19ff58f14075.tar.gz |
Add urimethodmap support
yay
Diffstat (limited to 'bonus/gmi2html/Makefile')
-rw-r--r-- | bonus/gmi2html/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bonus/gmi2html/Makefile b/bonus/gmi2html/Makefile new file mode 100644 index 00000000..f655100a --- /dev/null +++ b/bonus/gmi2html/Makefile @@ -0,0 +1,10 @@ +CFLAGS = -Wall -Wextra -std=c89 -pedantic -g -O2 -fsanitize=address +prefix = /usr/local + +gmi2html: gmi2html.c + $(CC) $(CFLAGS) gmi2html.c -o gmi2html + +.PHONY: install +install: + mkdir -p "$(DESTDIR)$(prefix)/bin" + install -m755 gmi2html "$(DESTDIR)$(prefix)/bin" |