github.com/go-spatial/go-wfs@v0.1.4-0.20190401000911-c9fba2bb5188/Makefile (about)

     1  ###############################################################################
     2  #
     3  # The MIT License (MIT)
     4  # Copyright (c) 2018 Tom Kralidis
     5  #
     6  # Permission is hereby granted, free of charge, to any person obtaining a copy
     7  # of this software and associated documentation files (the "Software"), to
     8  # deal in the Software without restriction, including without limitation the
     9  # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
    10  # sell copies of the Software, and to permit persons to whom the Software is
    11  # furnished to do so, subject to the following conditions:
    12  #
    13  # The above copyright notice and this permission notice shall be included in
    14  # all copies or substantial portions of the Software.
    15  #
    16  # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    17  # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    18  # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
    19  # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    20  # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    21  # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    22  # USE OR OTHER DEALINGS IN THE SOFTWARE.
    23  #
    24  ###############################################################################
    25  
    26  all:
    27  	go build -i -o jivan main.go
    28  clean:
    29  	rm -f jivan
    30  
    31  format:
    32  	gofmt -s -l -w .
    33  
    34  test:
    35  	go test ./... -v
    36  
    37  vet:
    38  	go vet
    39  
    40  .PHONY: all clean format test vet