box-o-sand/gotime/Makefile

35 lines
1.4 KiB
Makefile
Raw Normal View History

TARGETS = \
github.com/meatballhat/box-o-sand/gotime/amqpfun \
github.com/meatballhat/box-o-sand/gotime/amqpfun-runner \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/buffered-channels \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/channels \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/exercise-fibonacci-closure \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/exercise-http-handlers \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/exercise-maps \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/exercise-rot13-reader \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/exercise-slices \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/exercise-sqrt \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/goroutines \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/hello-web \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/maps \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/ranges \
github.com/meatballhat/box-o-sand/gotime/gotour-artifacts/selects \
2012-12-14 02:02:19 +00:00
github.com/meatballhat/box-o-sand/gotime/junkdrawer/greppish \
github.com/meatballhat/box-o-sand/gotime/junkdrawer/reflectish \
github.com/meatballhat/box-o-sand/gotime/junkdrawer/randimg
2012-12-14 02:02:19 +00:00
2012-11-10 18:41:02 +00:00
test: build
go test -x -v $(TARGETS)
2012-11-10 18:41:02 +00:00
build: deps
go install -x $(TARGETS)
2012-11-10 18:41:02 +00:00
deps:
go get -n -x $(TARGETS)
2012-11-10 18:41:02 +00:00
clean:
go clean -x -i $(TARGETS)
.PHONY: test build clean fmt