mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
23 lines
275 B
Makefile
23 lines
275 B
Makefile
.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)"
|
|
else
|
|
info:
|
|
@echo "Building for Linux"
|
|
endif
|