aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--Makefile24
-rw-r--r--cmd/aerc/main.go9
3 files changed, 35 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f1683ec
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.go
+/aerc
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..064c86b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,24 @@
+PKGNAME = git.sr.ht/~sircmpwn/aerc2
+
+GOPATH = $(realpath .go)
+PKGPATH = .go/src/$(PKGNAME)
+
+all: aerc
+
+.go:
+ mkdir -p $(dir $(PKGPATH))
+ ln -fTrs $(realpath .) $(PKGPATH)
+
+get: .go
+ env GOPATH=$(GOPATH) go get -d ./...
+
+test: .go
+ env GOPATH=$(GOPATH) go test ./...
+
+aerc: .go
+ env GOPATH=$(GOPATH) go build -o $@ ./cmd/$@
+
+clean:
+ rm -rf .go aerc
+
+.PHONY: get test clean
diff --git a/cmd/aerc/main.go b/cmd/aerc/main.go
new file mode 100644
index 0000000..24dcac8
--- /dev/null
+++ b/cmd/aerc/main.go
@@ -0,0 +1,9 @@
+package main
+
+import (
+ "fmt"
+)
+
+func main() {
+ fmt.Println("Hello world")
+}