summaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorWolfgang Müller2021-07-04 12:57:27 +0200
committerWolfgang Müller2021-07-04 12:57:27 +0200
commit4f9fba8192f2213962774792010f64a540d94f90 (patch)
tree8f7e0a2a3402331c74dd227b1ec5651051c87e79 /Makefile
parent14f1c1351f577ec90deda76960c0d513325b9a77 (diff)
downloadsite-4f9fba8192f2213962774792010f64a540d94f90.tar.gz
Remove man.scss
Now with the old oriole.systems/man location retired, we can get rid of the stylesheet we used to use for it.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d16d842..ca04d36 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ POSTS_HTML = $(POSTS_MD:.md=.html) $(POSTS_XML:.xml=.html)
SCSS = $(wildcard scss/_*.scss)
-site: index.html atom.xml style.css man.css
+site: index.html atom.xml style.css
index.html: templates/index.xml $(POSTS_HTML)
sblg -o $@ -t templates/index.xml $(POSTS_HTML)
@@ -22,9 +22,9 @@ atom.xml: templates/atom.xml $(POSTS_HTML)
sassc -t expanded $< >$@
clean:
- rm -f posts/*.html index.html atom.xml style.css man.css
+ rm -f posts/*.html index.html atom.xml style.css
deploy: site
- @rsync -avhR $(POSTS_HTML) posts/img fonts index.html style.css man.css logo.{svg,webp} atom.xml coleridge:www/oriole.systems/
+ @rsync -avhR $(POSTS_HTML) posts/img fonts index.html style.css logo.{svg,webp} atom.xml coleridge:www/oriole.systems/
.PHONY: clean deploy site