1234567891011121314151617181920212223 |
- 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
- tarball: bundle
- @$(ECHO) "[RAKE ][thermite]"
- @CARGO_TARGET=debug $(BUNDLE) exec rake thermite:tarball
- test: tarball
- @CARGO_TARGET=debug $(BUNDLE) exec rake thermite:test
- .FORCE:
- .PHONY: all
|