Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
aaanh committed Apr 4, 2024
1 parent 9c38dd8 commit 42725dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Go parameters
GOCMD=go
GOBUILD=$(GOCMD) build
GORUN=$(GOCMD) run
GOCLEAN=$(GOCMD) clean
GOTEST=$(GOCMD) test
GOGET=$(GOCMD) get
Expand All @@ -10,6 +11,9 @@ BINARY_NAME=tailflare

all: cd test build

run:
cd src && $(GORUN) .

build:
cd src && $(GOBUILD) -o ../build/$(BINARY_NAME) -v

Expand Down

0 comments on commit 42725dd

Please sign in to comment.