all: build clean: @rm -rf dist/* build_fonts: clean @scripts/build_fonts.sh build_sass: clean @scripts/build_sass.sh build_content: clean @scripts/build_content.sh build: build_fonts build_sass build_content watch_sass: build @scripts/watch_sass.sh watch_content: build @scripts/watch_content.sh watch: watch_sass watch_content serve_only: build @scripts/serve.sh serve: watch serve_only deploy: build @rsync --progress --stats -avz --delete dist/ vulpes@94.130.78.123:/srv/http/volpeon.ink/ .PHONY: all clean build watch serve deploy