Skip to content

Commit

Permalink
Add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrowan committed May 15, 2018
1 parent 17b957e commit f2ea2e9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
clean:
-rm -r ./build

build: clean
mkdir ./build
GOOS=windows GOARCH=amd64 go build -a -o build/neversink-filter-updater-64-bit.exe
GOOS=windows GOARCH=386 go build -a -o build/neversink-filter-updater-32-bit.exe

.PHONY: build clean

0 comments on commit f2ea2e9

Please sign in to comment.