criu/scripts/nmk/scripts/main.mk
Andrei Vagin e076c11e22 ci: fix codespell errors
Signed-off-by: Andrei Vagin <avagin@gmail.com>
2023-11-27 16:47:16 -08:00

28 lines
496 B
Makefile

ifndef ____nmk_defined__main
#
# General 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_defined__main = y
endif