2012-11-06 01:36:27 +00:00
|
|
|
PACKAGES := $(foreach pkg,\
|
|
|
|
$(shell ls src/gotour.meatballhat.com),\
|
|
|
|
$(patsubst %,gotour.meatballhat.com/%,$(pkg))\
|
|
|
|
)
|
2012-08-26 01:08:08 +00:00
|
|
|
|
2012-11-06 01:36:27 +00:00
|
|
|
all:
|
|
|
|
go install $(PACKAGES)
|
2012-08-26 01:08:08 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -v bin/*
|
|
|
|
|
2012-11-06 01:36:27 +00:00
|
|
|
env:
|
|
|
|
@echo GOPATH=$(GOPATH)
|
|
|
|
@echo PACKAGES=$(PACKAGES)
|
|
|
|
|
2012-08-26 01:08:08 +00:00
|
|
|
.PHONY: all clean
|