install favicon
This commit is contained in:
parent
dfc51bd5d0
commit
84431ddb85
6
Makefile
6
Makefile
@ -38,9 +38,10 @@ $(error Edit this Makefile and set the ROOT_PATH variable)
|
||||
endif
|
||||
|
||||
SRC_DIR = src
|
||||
RES_DIR = resources
|
||||
_SRC_FLS = config.html config.js index.html index.js imgsort.php style.css style.css.map
|
||||
SRC_FLS = $(foreach f,$(_SRC_FLS),$(SRC_DIR)/$(f))
|
||||
INSTALL_FLS = $(foreach f,$(_SRC_FLS),$(INSTALL_DIR)/$(f))
|
||||
INSTALL_FLS = $(foreach f,$(_SRC_FLS),$(INSTALL_DIR)/$(f)) $(INSTALL_DIR)/favicon.png
|
||||
SASS_CMD = sass --color --load-path=src/sass
|
||||
|
||||
|
||||
@ -52,6 +53,9 @@ $(INSTALL_DIR)/%.php: $(SRC_DIR)/%.php
|
||||
sed 's|$$rootDir = .*|$$rootDir = "$(ROOT_DIR)/";|; s|$$rootPath = .*|$$rootPath = "$(ROOT_PATH)/";|; s|$$stagingDirName = .*|$$stagingDirName = "$(STAGING_DIR)/";|' $< > $@
|
||||
chmod 0744 $@
|
||||
|
||||
$(INSTALL_DIR)/%.png: $(RES_DIR)/%.png
|
||||
install -m 0744 $< $@
|
||||
|
||||
$(INSTALL_DIR)/%: $(SRC_DIR)/%
|
||||
install -m 0744 $< $@
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user