soz.sh

A server-side HTTP client for DICT protocol.
git clone git://efe.kim/soz.sh
Log | Files | Refs

commit 8f63bb73d1af424bc92b5fdb883460204a72a27c
parent 78bf2d20f59b818b442b0e45da3214d4e6046538
Author: Sunur Efe Vural <efe@efe.kim>
Date:   Sat,  7 Sep 2019 11:11:46 -0400

add makefile

Diffstat:
AMakefile | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,12 @@ +.POSIX: + +PREFIX = /srv/www/scripts + +install: + cp -f subdl $(PREFIX)/soz.sh + chmod 755 $(PREFIX)/soz.sh + +uninstall: + rm -f $(PREFIX)/soz.sh + +.PHONY: install uninstall