# # $Id: Makefile.deps 88 2008-12-10 18:31:39Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Core_Glue = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif ifndef Priority include $(DIR_MORPHEO)/Behavioural/Generic/Priority/Makefile.deps endif #-----[ Directory ]---------------------------------------- Core_Glue_DIR = $(DIR_MORPHEO)/Behavioural/Core/Core_Glue #-----[ Library ]------------------------------------------ Core_Glue_LIBRARY = -lCore_Glue \ $(Priority_LIBRARY) \ $(Behavioural_LIBRARY) Core_Glue_DIR_LIBRARY = -L$(Core_Glue_DIR)/lib \ $(Priority_DIR_LIBRARY) \ $(Behavioural_DIR_LIBRARY) #-----[ Rules ]-------------------------------------------- Core_Glue_library : @\ $(MAKE) Behavioural_library; \ $(MAKE) Priority_library; \ $(MAKE) --directory=$(Core_Glue_DIR) --makefile=Makefile; Core_Glue_library_clean : @\ $(MAKE) Behavioural_library_clean; \ $(MAKE) Priority_library_clean; \ $(MAKE) --directory=$(Core_Glue_DIR) --makefile=Makefile clean;