xs/vendor/blitter.com/go/herradurakex/Makefile

18 lines
191 B
Makefile

.PHONY: info clean all 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