Skip to content

Commit

Permalink
Fix build target in make file
Browse files Browse the repository at this point in the history
  • Loading branch information
brutella committed Dec 7, 2018
1 parent 7504ff1 commit 040dcb7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ BINARY_NAME=hkuvrd

BUILD_DIR=build
BUILD_SRC=daemon/hkuvrd.go
BUILD_DEST=

# use arm64 once Rasbian supports 64-bits
PACKAGE_RPI=$(BINARY_NAME)_linux_armhf
PACKAGE_MAC=$(BINARY_NAME)_darwin_amd64

all: test build
build:
$(GOBUILD) -o $(BUILD_DEST) -i $(BUILD_SRC)
$(GOBUILD) -o $(BUILD_DIR)/$(BINARY_NAME) -i $(BUILD_SRC)

test:
$(GOTEST) -v ./...
Expand Down

0 comments on commit 040dcb7

Please sign in to comment.