aboutsummaryrefslogtreecommitdiffhomepage
path: root/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 7750632..c88972d 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -46,6 +46,9 @@ test-compile:
46 fi 46 fi
47 go test -c $(TEST) $(TESTARGS) 47 go test -c $(TEST) $(TESTARGS)
48 48
49website-githubpages:
50 bash scripts/launch-website.sh
51
49website: 52website:
50ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO))) 53ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
51 echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..." 54 echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
@@ -60,5 +63,5 @@ ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
60endif 63endif
61 @$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME) 64 @$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
62 65
63.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test 66.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test website-githubpages
64 67