diff options
| author | Jeff Carr <[email protected]> | 2023-02-08 11:04:04 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-02-08 11:04:04 -0600 |
| commit | 00082af773b80948418bc9eb471ab22498e80c75 (patch) | |
| tree | 2ad62742aca1062e52b9c8908078fa0b4fefb39d /Makefile | |
Initial Commit
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..926ed4e --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +run: build + ./control-panel-dns + +build-release: + go get -v -u -x . + go build + +build: + GO111MODULE="off" go get -v -x . + GO111MODULE="off" go build + +update: + GO111MODULE="off" go get -v -u -x . |
