浏览代码

:truck: Rename dist target as install

More common and more precise.

make install installs project in the dist folder.
DricomDragon 1 年之前
父节点
当前提交
76e326346a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      makefile

+ 2 - 2
makefile

@@ -51,8 +51,8 @@ $(DIR_OF_PROJECTS)/content.gen.html: $(DIR_OF_PROJECTS)/content.src.html $(DIR_O
 	$(PANDOC_GEN) --metadata-file $(DIR_OF_PROJECTS)/content.meta.yml --metadata-file $(GEN_LIST_YML) --metadata=category-projets --metadata=update-date:$(call extract_update_date,$<) --output $@ $<
 
 # Distribution
-.PHONY: dist
-dist: $(DIST_DIR)
+.PHONY: install
+install: $(DIST_DIR)
 	$(info Distributed folder generated)
 
 $(DIST_DIR): $(DIST_FILES)