summaryrefslogtreecommitdiffstatshomepage
path: root/Makefile (unfollow)
Commit message (Collapse)AuthorLines
2021-11-15Makefile: Set correct permissions explicitlyWolfgang Müller-1/+1
Make sure that the web server on the remote side can read all files regardless of the permission bits on the local development side (which may accidentally be left as 700 or 600).
2021-07-04Remove man.scssWolfgang Müller-3/+3
Now with the old oriole.systems/man location retired, we can get rid of the stylesheet we used to use for it.
2019-08-04Makefile: Add site as a dependency of deployWolfgang Müller-1/+1
This will make it such that the site is guaranteed to be built before deployment.
2019-07-22Add twitter card supportWolfgang Müller-1/+1
For some reason they don't support SVG, so use a webp image for now.
2019-07-22Makefile: Make the rsync invocation silentWolfgang Müller-1/+1
There's no useful information here, and the line is overly long anyway.
2019-07-22Makefile: Make rsync less verboseWolfgang Müller-1/+1
The -P switch really only is useful for bigger files, of which there are none here.
2019-07-22Makefile: Add post images to the list of files to be transferredWolfgang Müller-1/+1
2019-07-22Makefile: Add -R/--relative to rsync invocationWolfgang Müller-2/+1
We can save on an extra rsync call by adding --relative, which will create any implied directories for us on the target. Specifically, this is needed to create the posts/ directory in POSTS_HTML.
2019-07-22Makefile: Replace specific CSS targets with a generic oneWolfgang Müller-4/+1
2019-07-22Makefile: Collapse phony targetsWolfgang Müller-2/+1
2019-07-22Makefile: Rename HTML to POSTS_HTMLWolfgang Müller-6/+5
The new name is clearer and consistent with the source lists.
2019-07-22Makefile: Tweak the clean target to delete all HTML filesWolfgang Müller-1/+1
Previously only files that had a corresponding .md entry were deleted, leading to leftover garbage from switching branches or the like.