Add files

This commit is contained in:
George
2020-01-19 08:01:31 -05:00
commit 737e1d3edd
5 changed files with 283 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
GOARCH := $(GOARCH)
GOOS := $(GOOS)
FLAGS := -ldflags "-s -w"
all:
GOARCH=$$GOARCH GOOS=$$GOOS go build $(FLAGS) meshnamed.go
GOARCH=$$GOARCH GOOS=$$GOOS go build $(FLAGS) meshname.go
clean:
$(RM) meshnamed meshname meshnamed.exe meshname.exe
.PHONY: all clean