From 8167ef6932fa16de08ca0d8a60d7c478d922177b Mon Sep 17 00:00:00 2001 From: Kyle Bowman Date: Sun, 29 Dec 2024 13:19:30 -0500 Subject: [PATCH] fix: touch build/assets to deduplicate effort --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index b842ed8..eb1a563 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,7 @@ build/index.html: .buildlist $(BUILD_DIR)/$(ASSETS_DIR): $(SRC_DIR)/$(ASSETS_DIR) mkdir -p $(BUILD_DIR)/$(ASSETS_DIR) cp -rL $(SRC_DIR)/$(ASSETS_DIR)/* $(BUILD_DIR)/$(ASSETS_DIR) + touch $(BUILD_DIR)/$(ASSETS_DIR) $(BUILD_DIR)/%.html: $(SRC_DIR)/%.md $(BUILD_DIR)/$(ASSETS_DIR) @mkdir -p $(dir $@) -- 2.39.5