- commit
- c9a802d970b0a7344f479630920862d3ff8ac496
- parent
- 0b5e614b8d959c143ea7a8d14a0f026d33dcc5e2
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2023-11-03 10:08
Makefile: mark phony targets
Diffstat
M | Makefile | 2 | ++ |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
@@ -4,8 +4,10 @@ PAGES_MD := $(shell find _content -name 'index.yml' | sed 's/^_content/build/;s/ 4 4 IMG := $(shell find _content -regex '.*\.\(png\|gif\|jpg\)$$' | sed 's/^_content/build/') 5 5 MD_HTML := $(shell find _content -name '*.md' | sed 's/md$$/html/') 6 6 -1 7 .PHONY: all 7 8 all: build/index.html $(PAGES) $(PAGES_MD) build/feed.xml build/static/style.css $(IMG) 8 9 -1 10 .PHONY: push 9 11 push: all 10 12 rsync --delete -vrlc build/ ce9e:/var/www/blog 11 13