From fc5cae145e0865f779e2d29e651089a059fba982 Mon Sep 17 00:00:00 2001 From: entsteuerung Date: Thu, 1 Jun 2023 17:09:06 +0200 Subject: [PATCH] modified makefile from systemausfall.org/hilfe pointed UPLOAD_SSH_HOST to local IP --- Makefile | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7ac66b4 --- /dev/null +++ b/Makefile @@ -0,0 +1,54 @@ + + + + + +BUILD_DIR ?= build +EXPORT_DIR ?= public +BUILD_STAMP_HUGO = $(BUILD_DIR)/.stamp-hugo +BUILD_STAMP_THEME = $(BUILD_DIR)/.stamp-theme +SOURCE_DIRS = content data resources static +THEME_DIR ?= themes/hugo-geekdoc +BUILD_DEPS = config.toml $(shell find $(wildcard $(SOURCE_DIRS)) -type f) +HUGO_OPTS ?= --destination=$(EXPORT_DIR) + +UPLOAD_SSH_HOST = vagrant@192.168.56.5 +UPLOAD_TARGET_DIRECTORY = /data/webserver/hilfe.systemausfall.org/public + + +.PHONY: help +help: + @echo "Mögliche Ziele:" + @echo " build - Webseite erzeugen" + @echo " build-theme - Theme-Assets erzeugen" + @echo " upload - erzeugte Webseite hochladen" + @echo + +.PHONY: build +build: $(BUILD_STAMP_HUGO) + +$(BUILD_STAMP_HUGO): $(BUILD_DEPS) $(BUILD_STAMP_THEME) Makefile + @mkdir -p "$(dir $@)" + @HUGO_ENV=production hugo $(HUGO_OPTS) + @touch "$@" + +.PHONY: build-theme +build-theme: $(BUILD_STAMP_THEME) + +$(BUILD_STAMP_THEME): + @mkdir -p "$(dir $@)" + cd "$(THEME_DIR)" \ + && npm install \ + && npm run build + touch "$@" + +.PHONY: upload +upload: $(BUILD_STAMP_HUGO) + @rsync -ax --delete \ + "$(EXPORT_DIR)/" \ + "$(UPLOAD_SSH_HOST):$(UPLOAD_TARGET_DIRECTORY)/" + +.PHONY: clean +clean: + $(RM) -r "$(BUILD_DIR)" +