# # $Id: Makefile.deps 88 2008-12-10 18:31:39Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined OOO_Engine = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif ifndef Commit_unit include $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Commit_unit/Makefile.deps endif ifndef Issue_queue include $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Issue_queue/Makefile.deps endif ifndef Reexecute_unit include $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Reexecute_unit/Makefile.deps endif ifndef Rename_unit include $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Makefile.deps endif ifndef Special_Register_unit include $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Special_Register_unit/Makefile.deps endif ifndef OOO_Engine_Glue include $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/OOO_Engine_Glue/Makefile.deps endif #-----[ Directory ]---------------------------------------- OOO_Engine_DIR = $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine #-----[ Library ]------------------------------------------ OOO_Engine_LIBRARY = -lOOO_Engine \ $(Commit_unit_LIBRARY) \ $(Issue_queue_LIBRARY) \ $(Reexecute_unit_LIBRARY) \ $(Rename_unit_LIBRARY) \ $(Special_Register_unit_LIBRARY) \ $(OOO_Engine_Glue_LIBRARY) \ $(Behavioural_LIBRARY) OOO_Engine_DIR_LIBRARY = -L$(OOO_Engine_DIR)/lib \ $(Commit_unit_DIR_LIBRARY) \ $(Issue_queue_DIR_LIBRARY) \ $(Reexecute_unit_DIR_LIBRARY) \ $(Rename_unit_DIR_LIBRARY) \ $(Special_Register_unit_DIR_LIBRARY) \ $(OOO_Engine_Glue_DIR_LIBRARY) \ $(Behavioural_DIR_LIBRARY) #-----[ Rules ]-------------------------------------------- OOO_Engine_library : @\ $(MAKE) Behavioural_library; \ $(MAKE) Commit_unit_library; \ $(MAKE) Issue_queue_library; \ $(MAKE) Reexecute_unit_library; \ $(MAKE) Rename_unit_library; \ $(MAKE) Special_Register_unit_library; \ $(MAKE) OOO_Engine_Glue_library; \ $(MAKE) --directory=$(OOO_Engine_DIR) --makefile=Makefile; OOO_Engine_library_clean : @\ $(MAKE) Behavioural_library_clean; \ $(MAKE) Commit_unit_library_clean; \ $(MAKE) Issue_queue_library_clean; \ $(MAKE) Reexecute_unit_library_clean; \ $(MAKE) Rename_unit_library_clean; \ $(MAKE) Special_Register_unit_library_clean; \ $(MAKE) OOO_Engine_Glue_library_clean; \ $(MAKE) --directory=$(OOO_Engine_DIR) --makefile=Makefile clean;