box-o-sand/gotime/Makefile
Dan Buch 0d7806fba4 Re-namespacing things and adjusting how stuff gets built
based on some recent practical experience with Go.
2012-11-05 20:36:27 -05:00

17 lines
251 B
Makefile

PACKAGES := $(foreach pkg,\
$(shell ls src/gotour.meatballhat.com),\
$(patsubst %,gotour.meatballhat.com/%,$(pkg))\
)
all:
go install $(PACKAGES)
clean:
rm -v bin/*
env:
@echo GOPATH=$(GOPATH)
@echo PACKAGES=$(PACKAGES)
.PHONY: all clean