2014-09-19 03:45:54 +08:00
|
|
|
PACKAGES := gobot gobot/api gobot/platforms/intel-iot/edison $(shell ls ./platforms | sed -e 's/^/gobot\/platforms\//')
|
2014-06-12 11:10:46 +08:00
|
|
|
|
2014-07-19 04:18:01 +08:00
|
|
|
.PHONY: test cover robeaux
|
2014-07-11 02:13:32 +08:00
|
|
|
|
2014-06-12 11:10:46 +08:00
|
|
|
test:
|
2014-06-24 09:57:41 +08:00
|
|
|
for package in $(PACKAGES) ; do \
|
2014-07-04 10:14:04 +08:00
|
|
|
go test github.com/hybridgroup/$$package ; \
|
2014-06-24 09:57:41 +08:00
|
|
|
done ; \
|
2014-07-19 04:18:01 +08:00
|
|
|
|
2014-06-12 11:10:46 +08:00
|
|
|
cover:
|
|
|
|
echo "mode: count" > profile.cov ; \
|
|
|
|
for package in $(PACKAGES) ; do \
|
2014-07-04 10:14:04 +08:00
|
|
|
go test -covermode=count -coverprofile=tmp.cov github.com/hybridgroup/$$package ; \
|
2014-06-12 11:10:46 +08:00
|
|
|
cat tmp.cov | grep -v "mode: count" >> profile.cov ; \
|
|
|
|
done ; \
|
|
|
|
rm tmp.cov ; \
|
2014-07-02 14:10:12 +08:00
|
|
|
|
|
|
|
robeaux:
|
|
|
|
ifeq (,$(shell which go-bindata))
|
|
|
|
$(error robeaux not built! https://github.com/jteeuwen/go-bindata is required to build robeaux assets )
|
|
|
|
endif
|
|
|
|
cd api ; \
|
2014-07-11 02:35:00 +08:00
|
|
|
git clone --depth 1 git://github.com/hybridgroup/robeaux.git robeaux-tmp; \
|
|
|
|
cd robeaux-tmp ; \
|
2014-07-11 02:13:32 +08:00
|
|
|
rm fonts/* ; \
|
2014-08-05 03:01:33 +08:00
|
|
|
rm -r test/* ; \
|
2014-07-11 02:13:32 +08:00
|
|
|
rm Makefile package.json README.markdown robeaux.gemspec css/fonts.css ; \
|
|
|
|
touch css/fonts.css ; \
|
2014-07-02 14:10:12 +08:00
|
|
|
echo "Updating robeaux to $(shell git rev-parse HEAD)" ; \
|
2014-07-11 02:35:00 +08:00
|
|
|
go-bindata -pkg="robeaux" -o robeaux.go -ignore=\\.git ./... ; \
|
|
|
|
mv robeaux.go ../robeaux ; \
|
2014-07-02 14:10:12 +08:00
|
|
|
cd .. ; \
|
2014-07-11 02:35:00 +08:00
|
|
|
rm -rf robeaux-tmp/ ; \
|
|
|
|
go fmt ./robeaux/robeaux.go ; \
|
2014-07-19 04:18:01 +08:00
|
|
|
|