Updates to main Makefile (and added spinsult Makefile)

This commit is contained in:
Russ Magee 2018-07-04 23:07:09 -07:00
parent 9edcc5110c
commit 94e06abbcb
2 changed files with 38 additions and 10 deletions

17
spinsult/Makefile Normal file
View file

@ -0,0 +1,17 @@
.PHONY: info clean lib
all: lib
clean:
go clean .
lib: info
go install .
ifneq ($(MSYSTEM),)
info:
@echo "Building for Windows (MSYS)"
else
info:
@echo "Building for Linux"
endif