imag/libimagruby/Makefile
Matthias Beyer 20df1bbb03 We need to call bundle before we call rake
Travis did this magically I suppose. I'm not sure though.
2017-04-21 21:09:09 +02:00

22 lines
408 B
Makefile

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