syntastic.mk 428 B

12345678910111213
  1. # Copyright (c) 2017, Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com>
  2. # This file is contributed to erlang.mk and subject to the terms of the ISC License.
  3. .PHONY: show-ERL_LIBS show-ERLC_OPTS show-TEST_ERLC_OPTS
  4. show-ERL_LIBS:
  5. @echo $(ERL_LIBS)
  6. show-ERLC_OPTS:
  7. @$(foreach opt,$(ERLC_OPTS) -pa ebin -I include,echo "$(opt)";)
  8. show-TEST_ERLC_OPTS:
  9. @$(foreach opt,$(TEST_ERLC_OPTS) -pa ebin -I include,echo "$(opt)";)