remove min dir
This commit is contained in:
parent
c57bafa27d
commit
f2669d3740
1 changed files with 4 additions and 3 deletions
|
@ -7,8 +7,9 @@ DOTENV = .env
|
||||||
TEMPLATE_SRC = $(shell find templates -type f)
|
TEMPLATE_SRC = $(shell find templates -type f)
|
||||||
STATIC_SRC = $(shell find static -type f)
|
STATIC_SRC = $(shell find static -type f)
|
||||||
|
|
||||||
TEMPLATE_DST = min/views
|
MIN_DST = min
|
||||||
STATIC_DST = min/static
|
TEMPLATE_DST = $(MIN)/views
|
||||||
|
STATIC_DST = $(MIN)/static
|
||||||
|
|
||||||
all: $(BIN)
|
all: $(BIN)
|
||||||
|
|
||||||
|
@ -38,4 +39,4 @@ datadir: $(DOTENV)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "🧹 Cleaning..."
|
@echo "🧹 Cleaning..."
|
||||||
rm -rf $(BIN) $(TEMPLATE_DST) $(STATIC_DST)
|
rm -rf $(BIN) $(MIN_DST)
|
||||||
|
|
Loading…
Reference in a new issue