diff options
Diffstat (limited to 'wget')
-rw-r--r-- | wget/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/wget/Makefile b/wget/Makefile new file mode 100644 index 0000000..35c640f --- /dev/null +++ b/wget/Makefile @@ -0,0 +1,10 @@ +.POSIX: + +install: + test ! -d ~/.wget-hsts + ln -sf -- /dev/null ~/.wget-hsts + +uninstall: + -unlink -- ~/.wget-hsts + +.PHONY: install uninstall |