diff options
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5df5627 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +all: + +install: + install -d $(DESTDIR)/etc/letsencrypt-tiny + install -m0644 -t $(DESTDIR)/etc/letsencrypt-tiny config/*.conf + install -d $(DESTDIR)/usr/share/letsencrypt-tiny + install -m0644 -t $(DESTDIR)/usr/share/letsencrypt-tiny lets-encrypt-x[12]-cross-signed.pem + install -d $(DESTDIR)/usr/lib/letsencrypt-tiny + install -m0755 -t $(DESTDIR)/usr/lib/letsencrypt-tiny client webserver + install -d $(DESTDIR)/usr/share/man/man1 + install -m0644 -t $(DESTDIR)/usr/share/man/man1 letsencrypt-accountd.1 letsencrypt.1 + install -d $(DESTDIR)/usr/bin + install -m0644 -t $(DESTDIR)/usr/bin letsencrypt-accountd letsencrypt + +.PHONY: all install |