1
0

Makefile 333 B

1234567891011121314151617181920
  1. # See http://clarkgrubb.com/makefile-style-guide
  2. MAKEFLAGS += --warn-undefined-variables
  3. SHELL := bash
  4. .SHELLFLAGS := -eu -o pipefail -c
  5. .DEFAULT_GOAL := all
  6. .DELETE_ON_ERROR:
  7. .SUFFIXES:
  8. .PHONY: all
  9. all: test publish
  10. .PHONY: test
  11. test:
  12. -@echo "-> $@"
  13. -./gradlew test
  14. .PHONY: publish
  15. publish:
  16. -@echo "-> $@"
  17. -./gradlew publish