diff options
author | John Turner <jturner.usa@gmail.com> | 2025-08-27 02:40:36 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-08-27 02:40:36 -0400 |
commit | 96db3f4893fb5220234b41f8b4cbc30221905151 (patch) | |
tree | ff8475f340eb7d15cbe18ac1545621d3cfb858b3 /makefile | |
parent | b5e49151e2d5b0d5bf1d977581dbcc6cb2650b15 (diff) | |
download | website-96db3f4893fb5220234b41f8b4cbc30221905151.tar.gz |
replace makefile with meson
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/makefile b/makefile deleted file mode 100644 index a3a1eff..0000000 --- a/makefile +++ /dev/null @@ -1,30 +0,0 @@ -SITE ?= jturnerusa.dev - -PREFIX ?= / -DESTDIR ?= /var/www - -EMACS ?= emacs -ARGS = -batch -e "org-html-export-to-html" - -all: index.html blog/index.html blog/gentoo-on-gcloud.html blog/access-control.html - -index.html: index.org - $(EMACS) $< $(ARGS) - -blog/index.html: blog/index.org - $(EMACS) $< $(ARGS) - -blog/gentoo-on-gcloud.html: blog/gentoo-on-gcloud.org - $(EMACS) $< $(ARGS) - -blog/access-control.html: blog/access-control.org - $(EMACS) $< $(ARGS) - -install: all - install --mode 644 -D robots.txt --target-directory $(PREFIX)/$(DESTDIR)/$(SITE)/ - install --mode 644 -D sitemap.txt --target-directory $(PREFIX)/$(DESTDIR)/$(SITE)/ - install --mode 644 -D *.html --target-directory $(PREFIX)/$(DESTDIR)/$(SITE)/ - install --mode 644 -D blog/*.html --target-directory $(PREFIX)/$(DESTDIR)/$(SITE)/blog/ - -clean: - rm *.html blog/*.html |