go-hep.org/x/hep@v0.38.1/hepmc/Makefile (about)

     1  ## simple makefile to log workflow
     2  .PHONY: all test clean build install
     3  
     4  GOFLAGS ?= $(GOFLAGS:)
     5  
     6  all: install test
     7  
     8  
     9  build:
    10  	@go build $(GOFLAGS) ./...
    11  
    12  install:
    13  	@go get $(GOFLAGS) ./...
    14  
    15  test: install
    16  	@go test $(GOFLAGS) ./...
    17  
    18  bench: install
    19  	@go test -run=NONE -bench=. $(GOFLAGS) ./...
    20  
    21  clean:
    22  	@go clean $(GOFLAGS) -i ./...
    23  
    24  ## EOF