From 3f0917ae62c6927cccaef0bd6af6df0e3414bbbe Mon Sep 17 00:00:00 2001 From: James Reed Date: Wed, 5 Aug 2020 14:37:28 -0600 Subject: [PATCH] Makefile: Add targets to clone and update gh-pages --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 50ac989..0b78420 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,12 @@ +URL = git@github.com:jcrd/awesome-viewport + rock: luarocks make --local rockspec/awesome-viewport-devel-1.rockspec -.PHONY: rock +gh-pages: + git clone -b gh-pages --single-branch $(URL) gh-pages + +ldoc: gh-pages + ldoc . -d gh-pages + +.PHONY: rock ldoc