diff options
author | Cem Keylan <cem@ckyln.com> | 2021-02-02 10:33:00 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-02-02 10:38:06 +0300 |
commit | 39465ac7eef48c140c1789c1317f1a12e59b1717 (patch) | |
tree | 1ec2d71faed5cc361884272d05666751e3528b6f /Makefile | |
parent | 95f85480de7eec5ba26fd54b7d8994f09e550225 (diff) | |
download | website-39465ac7eef48c140c1789c1317f1a12e59b1717.tar.gz |
website: make submodule updating optional
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,15 +1,15 @@ EMACS = emacs all: docs style - emacs --batch --script ./org-publish.el + ${EMACS} --batch --script ./org-publish.el -docs: update-submodules +docs: texidocs/carbslinux.texi texidocs/carbslinux.txt mkdir -p docs/docs makeinfo --html --css-ref=https://www.gnu.org/software/gnulib/manual.css -o docs/docs/carbslinux texidocs/carbslinux.texi makeinfo --html --css-ref=https://www.gnu.org/software/gnulib/manual.css --no-split -o docs/docs/carbslinux.html texidocs/carbslinux.texi cp texidocs/carbslinux.txt docs/docs/carbslinux.txt -style: update-submodules +style: style/carbslinux.css mkdir -p docs cp style/carbslinux.css docs/style.css |