From 5980f6b9da44ef157ab064c3671ec05ea142a379 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sat, 21 Dec 2019 23:29:17 -0500 Subject: [PATCH] build: add basic Makefile for install The install rule simply copies the file to /srv/http/index.html, which is the default area for lighttpd. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6d880a2 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +.PHONY: install +install: + cp -f index.html /srv/http/index.html -- libgit2 1.1.1