commit 5980f6b9da44ef157ab064c3671ec05ea142a379 (patch) parent 52951857501de20c16fbaceb28f71964fcb7e3b3 Author: Alex Karle <alex@karle.co> Date: Sat, 21 Dec 2019 23:29:17 -0500 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. Diffstat:
A | Makefile | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,3 @@ +.PHONY: install +install: + cp -f index.html /srv/http/index.html