summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2020-04-13 18:56:15 +0200
committerChristian Pointner <equinox@spreadspace.org>2020-04-13 18:56:15 +0200
commit46d195ccc3db6e47120d3813bf5414176482192d (patch)
tree6eaa1433cc0b0c4f332ff489a57bfb9b0729dfad /Makefile
parentadd go-modules support and fix midi library API change (diff)
parentstatemachine: current vs target vs real (diff)
Merge branch 'topic/x32-osc'HEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile45
1 files changed, 45 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a557e34
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,45 @@
+##
+## dolmetschctl
+##
+##
+## Copyright (C) 2019 Christian Pointner <equinox@spreadspace.org>
+##
+## This file is part of dolmetschctl.
+##
+## dolmetschctl is free software: you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation, either version 3 of the License, or
+## any later version.
+##
+## dolmetschctl is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with dolmetschctl. If not, see <http://www.gnu.org/licenses/>.
+##
+
+GOCMD := go
+ifdef GOROOT
+GOCMD = $(GOROOT)/bin/go
+endif
+
+all: dolmetschctl dolmetschctld
+.PHONY: vet format dolmetschctl dolmetschctld clean
+
+vet:
+ $(GOCMD) vet ./...
+
+format:
+ $(GOCMD) fmt ./...
+
+dolmetschctl:
+ $(GOCMD) build -o dolmetschctl ./cmd/dolmetschctl
+
+dolmetschctld:
+ $(GOCMD) build -o dolmetschctld ./cmd/dolmetschctld
+
+clean:
+ rm -f dolmetschctl
+ rm -f dolmetschctld