diff --git a/Makefile b/Makefile index a941e67..9dd3a7b 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ PROJECTS_DST := $(patsubst content/projects/%,$(ODIR)/projects/%/index.html,$(PR POSTS_SRC := $(wildcard content/posts/*) POSTS_DST := $(patsubst content/posts/%,$(ODIR)/posts/%/index.html,$(POSTS_SRC)) -all: $(PAGES_DST) $(PROJECTS_DST) $(POSTS_DST) $(ODIR)/style.css $(ODIR)/index.html $(ODIR)/posts/index.html $(ODIR)/rss.xml $(ODIR)/rss.png +all: $(PAGES_DST) $(PROJECTS_DST) $(POSTS_DST) $(ODIR)/style.css $(ODIR)/favicon.ico $(ODIR)/index.html $(ODIR)/posts/index.html $(ODIR)/rss.xml $(ODIR)/rss.png $(ODIR)/%/index.html: content/pages/%/note.md mkdir -p "$(dir $@)" @@ -41,6 +41,8 @@ $(ODIR)/index.html: content/index.md $(ODIR)/style.css: style.css cp style.css $(ODIR)/style.css +$(ODIR)/favicon.ico: favicon.ico + cp favicon.ico $(ODIR)/favicon.ico clean: rm -rf $(ODIR)/* diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..5608dde Binary files /dev/null and b/favicon.ico differ