diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 45 |
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 |