Przeglądaj źródła

:fire: Remove the usage of download folder

As it is not necessary any-more.

Prefer local files instead to avoid cluttering.
DricomDragon 1 rok temu
rodzic
commit
0d0cf75315
1 zmienionych plików z 0 dodań i 3 usunięć
  1. 0 3
      makefile

+ 0 - 3
makefile

@@ -11,12 +11,10 @@ GEN_MDS := $(SRC_MDS:%.src.md=%.gen.html)
 GEN_FILES := $(GEN_HTMLS) $(GEN_MDS)
 
 INCLUDED_FILES := $(shell find src/include -type f)
-DOWNLOAD_FILES := $(shell find src/download -type f)
 EMBEDDED_FILES := $(shell find src -name '*.png' -or -name '*.svg')
 
 DIST_GEN_FILES := $(GEN_FILES:src/%.gen.html=$(DIST_DIR)/%.html)
 DIST_INC_FILES := $(INCLUDED_FILES:src/%=$(DIST_DIR)/%)
-DIST_DWN_FILES := $(DOWNLOAD_FILES:src/%=$(DIST_DIR)/%)
 DIST_EMB_FILES := $(EMBEDDED_FILES:src/%=$(DIST_DIR)/%)
 DIST_FILES := $(DIST_GEN_FILES) $(DIST_INC_FILES) $(DIST_DWN_FILES) $(DIST_EMB_FILES) $(DIST_DIR)/favicon.ico
 
@@ -66,6 +64,5 @@ debug:
 	$(info GEN_MDS $(GEN_MDS))
 	$(info GEN_FILES $(GEN_FILES))
 	$(info INCLUDED_FILES $(INCLUDED_FILES))
-	$(info DOWNLOAD_FILES $(DOWNLOAD_FILES))
 	$(info EMBEDDED_FILES $(EMBEDDED_FILES))
 	$(info DIST_FILES $(DIST_FILES))