diff options
author | Arun Isaac | 2022-01-03 23:01:05 +0530 |
---|---|---|
committer | Arun Isaac | 2022-01-03 23:01:05 +0530 |
commit | b62e9b955a0fd25a4ddf4f8316f1b7dbadd941d8 (patch) | |
tree | a8898cecb3b0c1f7951c7d0946f9f4b9c7ecab13 | |
parent | 64a85c76cc3dd80394421f132a3abb28bd0f6be6 (diff) | |
download | kolam-b62e9b955a0fd25a4ddf4f8316f1b7dbadd941d8.tar.gz kolam-b62e9b955a0fd25a4ddf4f8316f1b7dbadd941d8.tar.lz kolam-b62e9b955a0fd25a4ddf4f8316f1b7dbadd941d8.zip |
Makefile: Add website target.
* Makefile (EMACS): New variable.
(website, website/index.html): New targets.
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -18,9 +18,15 @@ # <http://www.gnu.org/licenses/>. GUILE = guile +EMACS = emacs all: ; .PHONY: check check: $(GUILE) -L . tests/parse.scm + +website: website/index.html + +website/index.html: README.org build-aux/build-home-page.el + $(EMACS) -Q --batch --load build-aux/build-home-page.el --funcall build-website |