Create Makefile

This commit is contained in:
Cutieguwu
2025-07-21 14:27:53 -04:00
parent c5635d31df
commit fa8b8237ab

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
SASS_SRC=src/style.scss
SASS_DEST=target/style.css
SASS_CMD=sass \
$(SASS_SRC) \
$(SASS_DEST)
BALLOON_CMD=~/.pyenv/versions/3.12.9/bin/python \
balloon.py
sass:
$(SASS_CMD)
balloon:
$(BALLOON_CMD)
all: sass balloon
.DEFAULT_GOAL := all