diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License # along with run64. If not, see <https://www.gnu.org/licenses/>. +EMACS ?= emacs + scripts = $(wildcard bin/*) .PHONY: all check install @@ -26,3 +28,8 @@ check: ; install: $(scripts) install -D $^ --target-directory $(bindir) + +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 |