imag/libimagruby/Makefile

23 lines
401 B
Makefile
Raw Normal View History

2017-01-20 09:37:58 +00:00
ECHO=$(shell which echo) -e
RUBY=$(shell which ruby)
BUNDLE=$(shell which bundle)
2017-01-20 09:37:58 +00:00
all:
@$(ECHO) "There is no default target here"
2017-01-20 09:37:58 +00:00
bundle:
@$(ECHO) "[BUNDLE]"
@$(BUNDLE) install --path vendor/bundle
2017-01-20 09:37:58 +00:00
bundle-rake-thermite-test:
@$(ECHO) "[RAKE ][thermite]"
@CARGO_TARGET=debug $(BUNDLE) exec rake thermite:tarball
2017-01-20 09:37:58 +00:00
test: lib bundle-rake-thermite-test
@$(ECHO) "[TEST ]"
2017-01-20 09:37:58 +00:00
.FORCE:
.PHONY: all