See discussion here.
In the Plone core development buildout I would like to be able to say in include.mk:
SOURCES_TARGETS+=mxcheckouts.ini mxsources.ini mxtests.ini
But SOURCES_TARGETS is already used in Makefile before include.mk is included, so that seems too late.
Instead, adding this line in include.mk seems to work:
$(SOURCES_TARGET): mxcheckouts.ini mxsources.ini mxtests.ini
But this is less clear, at least to me.
So I wonder if it makes sense to reshuffle something in the Makefile created by mxmake.
See discussion here.
In the Plone core development buildout I would like to be able to say in
include.mk:But
SOURCES_TARGETSis already used inMakefilebeforeinclude.mkis included, so that seems too late.Instead, adding this line in
include.mkseems to work:But this is less clear, at least to me.
So I wonder if it makes sense to reshuffle something in the Makefile created by
mxmake.