diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,4 +1,6 @@ GO = go +SCDOC = scdoc + pkgs = $(shell $(GO) list ./... | grep -v /vendor/) all: @@ -8,8 +10,15 @@ fmt: $(GO) fmt clean: - rm -f shoelaces + rm -f shoelaces docs/shoelaces.8 + +shoelaces.8: + $(SCDOC) < docs/shoelaces.8.scd > docs/shoelaces.8 + +docs: shoelaces.8 test: fmt $(GO) test -v $(pkgs) && \ ./test/integ-test/integ_test.py + +.PHONY: all clean docs |