2012-12-13 23:12:43 +00:00
|
|
|
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
|
|
|
|
|
2012-08-26 01:08:08 +00:00
|
|
|
|
2012-11-10 18:41:02 +00:00
|
|
|
test: build
|
2012-12-13 23:12:43 +00:00
|
|
|
go test -x -v $(TARGETS)
|
2012-11-10 18:41:02 +00:00
|
|
|
|
2012-11-10 23:47:32 +00:00
|
|
|
build: deps
|
2012-12-13 23:12:43 +00:00
|
|
|
go install -x $(TARGETS)
|
2012-11-06 01:59:42 +00:00
|
|
|
|
2012-11-10 18:41:02 +00:00
|
|
|
deps:
|
2012-12-13 23:12:43 +00:00
|
|
|
go get -n -x $(TARGETS)
|
2012-11-10 18:41:02 +00:00
|
|
|
|
2012-08-26 01:08:08 +00:00
|
|
|
clean:
|
2012-12-13 23:12:43 +00:00
|
|
|
go clean -x -i $(TARGETS)
|
2012-11-06 01:36:27 +00:00
|
|
|
|
2012-12-13 23:12:43 +00:00
|
|
|
.PHONY: test build clean fmt
|