alexkarle.com

Source for alexkarle.com
git clone git://git.alexkarle.com/alexkarle.com.git
Log | Files | Refs | README | LICENSE

commit 637de004bf7e0cba183d839027188d80c2ff2243 (patch)
parent 972189a0b817d0639c949af390f8bd7dea4f73f6
Author: Alex Karle <alex@karle.co>
Date:   Sun, 14 Jun 2020 23:27:05 -0400

make: Update install recipe for OpenBSD host

I now host on OpenBSD, so the destination is in a different place.

It's been a long road to OpenBSD, full of hardware problems (hot
laptops, X hanging on my amdgpu, etc), but I really admire the
security-first aspect of the OS, along with the simplicity of the base
install.

I'm a huge believer in simple software being better for everyone
(maintainers, end users, developers, sysadmins...), and httpd+relayd
is a nice stack that I'm excited to host on.

Maybe I'll add a note about it on the "thoughts" page :)

Diffstat:
MMakefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -1,3 +1,6 @@ +DEST = /var/www/htdocs/karleco + .PHONY: install install: - cp -f *.html style.css /srv/http/ + mkdir -p $(DEST) + cp -f *.html style.css $(DEST)