From 63633fd91bcc97217f2ac45ba602d752e8fbaafd Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Wed, 2 Mar 2016 17:34:58 +0100 Subject: Add a Makefile. --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3