stratux/test/Makefile

15 wiersze
182 B
Makefile
Czysty Zwykły widok Historia

2015-12-06 18:35:32 +00:00
ifeq "$(CIRCLECI)" "true"
#
else
$(if $(GOROOT),,$(error GOROOT is not set!))
2015-12-06 18:35:32 +00:00
endif
2015-12-06 18:01:21 +00:00
SRCS = $(wildcard *.go)
DEST = $(patsubst %.go,%,$(SRCS))
all: $(DEST)
%: %.go
go build $<