box-o-sand/gotime/Makefile
Dan Buch 44999623da Collapsing tree into more sane Go project layout
since I was in here looking at something unrelated...
2012-12-13 18:12:43 -05:00

32 lines
1.3 KiB
Makefile

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 \
github.com/meatballhat/box-o-sand/gotime/junkdrawer/greppish
test: build
go test -x -v $(TARGETS)
build: deps
go install -x $(TARGETS)
deps:
go get -n -x $(TARGETS)
clean:
go clean -x -i $(TARGETS)
.PHONY: test build clean fmt