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)