imag/libimagruby/Makefile

23 lines
393 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
tarball: bundle
@$(ECHO) "[RAKE ][thermite]"
@CARGO_TARGET=debug $(BUNDLE) exec rake thermite:tarball
2017-01-20 09:37:58 +00:00
test: tarball
@$(ECHO) "[TEST ] Not yet implemented. :-("
.FORCE:
.PHONY: all