criu/scripts/nmk/scripts/main.mk
Cyrill Gorcunov 0d1eac7ed4 nmk: Drop rules.mk
No much point in carrying it in a separate file.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
2016-04-01 18:06:30 +03:00

30 lines
532 B
Makefile

ifndef ____nmk_defined__main
#
# Genaral inclusion statement
ifndef ____nmk_defined__include
include $(__nmk_dir)include.mk
endif
ifndef ____nmk_defined__macro
include $(__nmk_dir)macro.mk
endif
#
# Anything else might be included with
#
# $(eval $(call include-once,<name.mk>))
#
# Note the order does matter!
$(eval $(call include-once,tools.mk))
$(eval $(call include-once,utils.mk))
$(eval $(call include-once,build.mk))
#
# Footer
$(__nmk_dir)scripts/main.mk:
@true
____nmk_defined__main = y
endif