diff options
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sbin/Makefile b/sbin/Makefile new file mode 100644 index 0000000..1976cc3 --- /dev/null +++ b/sbin/Makefile @@ -0,0 +1,14 @@ +# +# Makefile +# +# + +SBINDIR = /usr/sbin + +all: + +clean: + +install: + install -d $(DESTDIR)$(SBINDIR) + install -m755 update-ca-certificates $(DESTDIR)$(SBINDIR)/ |