Skip to content

Commit

Permalink
Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
hjr265 committed Jun 5, 2021
1 parent b94c562 commit c520d2c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2021 Furqan Software Ltd. All rights reserved.

.PHONY: build test clean loadcatd

build: loadcatd

test:
go test -mod=vendor -v ./...

clean:
go clean -i ./...

loadcatd:
GOOS=linux GOARCH=amd64 go build -mod=vendor -v -o loadcatd ./cmd/loadcatd

0 comments on commit c520d2c

Please sign in to comment.