Another "minor refactor" #61

Merged
sam merged 8 commits from more-stuff into master 2022-08-11 07:25:37 +00:00
2 changed files with 29 additions and 28 deletions
Showing only changes of commit 4704f7baa2 - Show all commits

53
.gitignore vendored
View File

@ -1,27 +1,28 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
# Go workspace file
go.work
dist/
# Test coverage
coverage/*
!coverage/.gitkeep
awl
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
# Go workspace file
go.work
dist/
# Test coverage
coverage/*
!coverage/.gitkeep
awl
doc/awl.1
.dccache

View File

@ -26,8 +26,7 @@ PROG ?= awl
all: $(PROG) doc/$(PROG).1
doc/$(PROG).1: doc/$(PROG).1.scd
@cp doc/awl.1 doc/awl.bak
$(SCDOC) <doc/$(PROG).1.scd >doc/$(PROG).1 && rm doc/awl.bak || mv doc/awl.bak doc/awl.1
$(SCDOC) <doc/$(PROG).1.scd >doc/$(PROG).1
## test: run go test
@ -65,6 +64,7 @@ lint: fmt vet
## clean: clean the build files
clean:
$(GO) clean
rm doc/$(PROG).1
## help: Prints this help message
help: