12345678910111213141516171819202122232425 |
- # Copyright (c) 2013-2014, Loïc Hoguin <essen@ninenines.eu>
- # This file is part of erlang.mk and subject to the terms of the ISC License.
- # Verbosity.
- dtl_verbose_0 = @echo " DTL " $(filter %.dtl,$(?F));
- dtl_verbose = $(dtl_verbose_$(V))
- # Core targets.
- define compile_erlydtl
- $(dtl_verbose) erl -noshell -pa ebin/ $(DEPS_DIR)/erlydtl/ebin/ -eval ' \
- Compile = fun(F) -> \
- Module = list_to_atom( \
- string:to_lower(filename:basename(F, ".dtl")) ++ "_dtl"), \
- erlydtl:compile(F, Module, [{out_dir, "ebin/"}]) \
- end, \
- _ = [Compile(F) || F <- string:tokens("$(1)", " ")], \
- init:stop()'
- endef
- ifneq ($(wildcard src/),)
- ebin/$(PROJECT).app:: $(shell find templates -type f -name \*.dtl 2>/dev/null)
- $(if $(strip $?),$(call compile_erlydtl,$?))
- endif
|