diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-03-02 17:34:58 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-03-02 18:18:58 +0100 |
commit | 63633fd91bcc97217f2ac45ba602d752e8fbaafd (patch) | |
tree | 38c81739771b54f265619ece0ab1b87c845d5e03 | |
parent | 2e332833c4f1cf069262ffdcae5f66ca8b818808 (diff) |
Add a Makefile.
-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 |