# ******************************************************************************
# (C) Automotive-Lighting Reutlingen GmbH  -  ALRT/EEG
#     Tuebinger Strasse 123, 72762 Reutlingen, Germany
# ******************************************************************************

# ------------------------------------------------------------------------------
# file   CustVar_200_PostBuild.gmk
#
# \brief customer variant make post-build operations
#
# ------------------------------------------------------------------------------

# ------------------------------------------------------------------------------
# PostBuild
# ------------------------------------------------------------------------------
.PHONY: PostBuild
PostBuild: DoPostBuildSpecific
	@$(GNUECHO) +++ Perform post-build events +++
	@$(GNUECHO)
# ------------------------------------------------------------------------------
# DoPostBuildSpecific Call the PostBuild Specific events
# ------------------------------------------------------------------------------
.PHONY: DoPostBuildSpecific
DoPostBuildSpecific:
ifeq ($(TYP_SPECIAL_BUILD_OR_REBUILD),TYP_SPECIAL_BUILD_OR_REBUILD_DEVELOPER)
	@$(GNUECHO) +++ perform post build events +++
	@$(GNUECHO)
	@$(GNUECHO) +++ Show illegal dependencies between modules +++
	@-$(PYTHON) $(PATH_TOOLS_SPECIFIC)/DepTracer/depTracer.py
	@$(GNUECHO)
else
	@$(GNUECHO) +++ perform post build events ( do nothing) +++
	@$(GNUECHO)
endif

