Skip to content

Commit

Permalink
Merge pull request #2 from hrshadhin/patch-2
Browse files Browse the repository at this point in the history
added make file
  • Loading branch information
pyprism authored Oct 4, 2020
2 parents 55ad2a5 + f684f69 commit 0e5ce66
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

.PHONY: all get clean build

GO ?= go

all: build

build: get
${GO} build -o bin/hiren-finder hiren.go

get:
dep ensure

clean:
@rm -rf bin/hiren-finder

0 comments on commit 0e5ce66

Please sign in to comment.