commit 620f763d6353c02f27e68c86acb31778422779be (patch)
parent 46ede8362e1d73120e4fd66956f11084ff7d8ed0
Author: alex <alex@garbash.com>
Date: Mon, 25 Oct 2021 00:23:45 -0400
make: Rebuild everything on buildpage/Makefile change
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -33,6 +33,7 @@ install: build
install -m 444 *.html /var/www/htdocs/~alex
install -m 444 notes/* /var/www/htdocs/~alex/notes
+$(BUILT): Makefile bin/buildpage
.SUFFIXES: .md .html .txt
.md.html:
@@ -40,6 +41,6 @@ install: build
# Legacy txt symlinks since it's linked externally!
.md.txt:
- cd `dirname $<` && ln -s `basename $<` `basename $@`
+ cd `dirname $<` && ln -sf `basename $<` `basename $@`
.PHONY: all clean install