box-o-sand/gotime/Makefile

17 lines
251 B
Makefile
Raw Normal View History

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