From f2669d3740e34f5a5cf571d891a5c86018278115 Mon Sep 17 00:00:00 2001 From: tavo Date: Tue, 1 Jul 2025 10:24:08 -0600 Subject: [PATCH] remove min dir --- examples/fullstack/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/fullstack/Makefile b/examples/fullstack/Makefile index 47ced44..2ce95b9 100644 --- a/examples/fullstack/Makefile +++ b/examples/fullstack/Makefile @@ -7,8 +7,9 @@ DOTENV = .env TEMPLATE_SRC = $(shell find templates -type f) STATIC_SRC = $(shell find static -type f) -TEMPLATE_DST = min/views -STATIC_DST = min/static +MIN_DST = min +TEMPLATE_DST = $(MIN)/views +STATIC_DST = $(MIN)/static all: $(BIN) @@ -38,4 +39,4 @@ datadir: $(DOTENV) clean: @echo "🧹 Cleaning..." - rm -rf $(BIN) $(TEMPLATE_DST) $(STATIC_DST) + rm -rf $(BIN) $(MIN_DST)