.PHONY: info clean lib
ifeq ($(GARBLE),y)
GO = garble -tiny -literals -debugdir=garbled
else
GO = go
endif
all: lib
clean:
go clean .
lib: info
$(GO) install .
ifneq ($(MSYSTEM),)
info:
@echo "Building for Windows (MSYS)"
@echo "Building for Linux"