24 lines
568 B
Makefile
24 lines
568 B
Makefile
PACKAGES := $(foreach pkg,\
|
|
$(shell ls src/meatballhat.com/gotour-artifacts),\
|
|
$(patsubst %,meatballhat.com/gotour-artifacts/%,$(pkg))\
|
|
)
|
|
|
|
all:
|
|
go install $(PACKAGES)
|
|
|
|
fmt:
|
|
go fmt $(PACKAGES)
|
|
|
|
clean:
|
|
rm -v bin/*
|
|
|
|
publish:
|
|
rsync -avz src/meatballhat.com/gotour-artifacts mbh:meatballhat.com/docroot/
|
|
ssh mbh "find meatballhat.com/docroot/gotour-artifacts -type d -exec chmod 755 {} \; && find meatballhat.com/docroot/gotour-artifacts/ -type f -exec chmod 644 {} \;"
|
|
|
|
env:
|
|
@echo GOPATH=$(GOPATH)
|
|
@echo PACKAGES=$(PACKAGES)
|
|
|
|
.PHONY: all clean publish env fmt
|