summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-07-10 11:23:10 +0200
committerVolpeon <git@volpeon.ink>2022-07-10 11:23:10 +0200
commitbce5fdfa3ab60ae443fd5ae32424826e9296f59a (patch)
tree2ed1502b7badda56502da8bb2bbab3238a616a60 /Makefile
parentUpdate (diff)
downloadvolpeon.ink-bce5fdfa3ab60ae443fd5ae32424826e9296f59a.tar.gz
volpeon.ink-bce5fdfa3ab60ae443fd5ae32424826e9296f59a.tar.bz2
volpeon.ink-bce5fdfa3ab60ae443fd5ae32424826e9296f59a.zip
Add support for custom emojis
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dcf5414..cd65a62 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,8 @@ FEED_FILES := $(patsubst content/%.md,out/%.xml,$(FEED_SRC))
21FONT_FILES := $(patsubst assets/fonts/%.ttf,out/%.woff2,$(wildcard assets/fonts/*.ttf)) 21FONT_FILES := $(patsubst assets/fonts/%.ttf,out/%.woff2,$(wildcard assets/fonts/*.ttf))
22CSS_FILES := $(patsubst assets/css/%.scss,out/%.css,$(wildcard assets/css/style.scss)) 22CSS_FILES := $(patsubst assets/css/%.scss,out/%.css,$(wildcard assets/css/style.scss))
23STATIC_FILES := $(patsubst content/%,out/%,$(shell find content -type f ! -name "*.md")) 23STATIC_FILES := $(patsubst content/%,out/%,$(shell find content -type f ! -name "*.md"))
24ASSET_FILES := $(FONT_FILES) $(CSS_FILES) out/icons.svg $(patsubst content/%,out/%,$(shell find content -maxdepth 1 -type f ! -name "*.md")) 24TOP_STATIC_FILES := $(patsubst content/%,out/%,$(shell find content -maxdepth 1 -type f ! -name "*.md"))
25ASSET_FILES := $(FONT_FILES) $(CSS_FILES) out/icons.svg $(TOP_STATIC_FILES)
25 26
26# 27#
27# TARGETS 28# TARGETS