From c319f043a01a02c029df304946d355a78f09b542 Mon Sep 17 00:00:00 2001 From: Cutieguwu Date: Mon, 21 Jul 2025 22:10:07 -0400 Subject: [PATCH] Delete Makefile --- Makefile | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index c40a798..0000000 --- a/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -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