Makefile 402 B

1234567891011121314151617181920212223
  1. ECHO=$(shell which echo) -e
  2. RUBY=$(shell which ruby)
  3. BUNDLE=$(shell which bundle)
  4. all:
  5. @$(ECHO) "There is no default target here"
  6. bundle:
  7. @$(ECHO) "[BUNDLE]"
  8. @$(BUNDLE) install --path vendor/bundle
  9. tarball: bundle
  10. @$(ECHO) "[RAKE ][thermite]"
  11. @CARGO_TARGET=debug $(BUNDLE) exec rake thermite:tarball
  12. test: tarball
  13. @CARGO_TARGET=debug $(BUNDLE) exec rake thermite:test
  14. .FORCE:
  15. .PHONY: all