summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-21 08:32:59 -0600
committerJeff Carr <[email protected]>2024-02-21 08:32:59 -0600
commitdf0ff5af1cd92287f79c7033cde4d339e0d8b628 (patch)
tree9230b0b2cc4d4e776c0a91e50f36c6685f92a764 /Makefile
parent42c506c0982ea85d54443a39e4995c44060287df (diff)
purge code for the autotypist
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 6 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index ca9ebfa..b8a3669 100644
--- a/Makefile
+++ b/Makefile
@@ -2,15 +2,15 @@
all: build
reset
- ./autotypist
+ ./submit-patchset
only-me: build
reset
- ./autotypist --only-me
+ ./submit-patchset --only-me
stderr: build
- echo "writing to /tmp/autotypist.log"
- ./autotypist >/tmp/autotypist.log 2>&1
+ echo "writing to /tmp/submit-patchset.log"
+ ./submit-patchset >/tmp/submit-patchset.log 2>&1
goimports:
goimports -w *.go
@@ -19,18 +19,15 @@ goimports:
gocui: build
reset
- ./autotypist --gui gocui >/tmp/autotypist.log 2>&1
+ ./submit-patchset --gui gocui >/tmp/submit-patchset.log 2>&1
build:
echo "build it!"
- -rm resources/*.so
- cp -a ~/go/src/go.wit.com/toolkits/*.so resources/
GO111MODULE=off go build -v -x
install:
- rm -f ~/go/src/go.wit.com/toolkits/*.so
go install -v -x
- autotypist
+ submit-patchset
check-git-clean:
@git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)