SHELL = /bin/sh
-# Β© 2023 Lady [@ Ladyβs Computer].
+# Β© 2023β2024 Lady [@ Ladyβs Computer].
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
-# This Makefile requires rsync 3 or newer.
-RSYNC = rsync
-RSYNC_FLAGS = -Oclmrtvz
-RSYNC_OPTIONS =
-RSYNC_FILTER = .rsync-filter
+SRCDIR := sources
+BUILDDIR := build
+BUILDTARGET := .grass
+DESTDIR := public
-SOURCE_CHARSET = utf-8-mac
+SHUSHE := .β©π°
+SHUSHEOPTS := SRCDIR='$(SRCDIR)' INCLUDEDIR='$(SRCDIR)/{include}' EXTRAPARSERS='$(wildcard parsers/*.xslt)' EXTRATRANSFORMS='$(wildcard transforms/*.xslt)'
-DESTINATION_HOST = computer
-DESTINATION_PATH = lady/www
-DESTINATION = $(DESTINATION_HOST):$(DESTINATION_PATH)
-DESTINATION_CHARSET = utf-8
+YSEME := .π₯π€
+YSEMEOPTS := BUILDTARGET='.grass' DESTDIR='$(DESTDIR)' SERVERPATH='lady/www'
-build:
-# Put any necessary build scripts in here!
- touch .grass
+# β Β§ Call out to β©π° δΉ¦η€Ύ ββββββββββββββββββββββββββββββββββββββββββ
-ensure-build:
- @if [ ! -f .grass ]; then echo 'Error: The website has not been built yet!' >&2; echo 'Run `make` before syncing.' >&2; exit 1; fi
- @if buildtime=$$(stat -f '%m' .grass) && committime=$$(git log -1 --format='%ct' | awk '{print $$NF}') && [ "$$committime" -gt "$$buildtime" ]; then echo 'Error: A commit was made after the last build!' >&2; echo 'Run `make` before syncing.' >&2; exit 1; fi
+build : $(SHUSHE)/GNUmakefile prebuild
+ @for publicfile in $(patsubst %,"%",$(wildcard $(DESTDIR)/*)); do if git check-ignore -q "$$publicfile"; then rm -rf "$$publicfile"; fi; done
+ @$(MAKE) -f '$<' install $(SHUSHEOPTS)
+ @touch '$(BUILDTARGET)'
-ensure-branch-up-to-date:
- git fetch
- @if ! git merge-base --is-ancestor @{u} HEAD; then echo 'Error: This branch is currently outβofβdate!' >&2; echo 'Pull in changes with `git pull` before syncing.' >&2; exit 1; fi
+prebuild : $(SHUSHE)/GNUmakefile
+ @$(MAKE) -f '$<' $(SHUSHEOPTS)
-ensure-clean:
- @if output=$$(git status --porcelain) && [ ! -z "$$output" ]; then echo 'Error: There are uncommitted changes!' >&2; echo 'Commit changes and run `make` before syncing.' >&2; exit 1; fi
+list : $(SHUSHE)/GNUmakefile
+ @$(MAKE) -f '$<' $@ $(SHUSHEOPTS)
-dry-sync: ensure-clean ensure-branch-up-to-date ensure-build
- $(RSYNC) $(RSYNC_FLAGS) --del --dry-run --filter=". $(RSYNC_FILTER)" --iconv=$(SOURCE_CHARSET),$(DESTINATION_CHARSET) $(RSYNC_OPTIONS) . $(DESTINATION)
+$(BUILDDIR)/% $(DESTDIR)/% : $(SHUSHE)/GNUmakefile
+ @$(MAKE) -f '$<' $@ $(SHUSHEOPTS)
-sync: ensure-clean ensure-branch-up-to-date ensure-build
- $(RSYNC) $(RSYNC_FLAGS) --del --filter=". $(RSYNC_FILTER)" --iconv=$(SOURCE_CHARSET),$(DESTINATION_CHARSET) $(RSYNC_OPTIONS) . $(DESTINATION)
- git push --force
+# β Β§ Call out to π₯π€ Yseme βββββββββββββββββββββββββββββββββββββββββ
-.PHONY: build dry-sync ensure-branch-up-to-date ensure-build ensure-clean sync;
+dry-sync sync : $(YSEME)/GNUmakefile
+ $(MAKE) -f '$<' $@ $(YSEMEOPTS)
+
+# β Β§ Special targets βββββββββββββββββββββββββββββββββββββββββββββββββ
+
+gone :
+ @for publicfile in $(patsubst %,"%",$(wildcard $(DESTDIR)/*)); do if git check-ignore -q "$$publicfile"; then rm -rf "$$publicfile"; fi; done
+
+FORCE : ;
+
+.PHONY : FORCE build dry-sync gone list prebuild sync ;
+
+# β Β§ MakeΒ·file targets βββββββββββββββββββββββββββββββββββββββββββββββ
+
+$(SHUSHE)/GNUmakefile $(YSEME)/GNUmakefile : %/GNUmakefile : FORCE
+ git submodule update --init '$*'