# # $Id: Makefile.deps 142 2010-08-04 20:09:03Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Ifetch_unit = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif ifndef Address_management include $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Address_management/Makefile.deps endif ifndef Ifetch_queue include $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/Makefile.deps endif ifndef Ifetch_unit_Glue include $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/Makefile.deps endif #-----[ Directory ]---------------------------------------- Ifetch_unit_DIR = $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit #-----[ Library ]------------------------------------------ Ifetch_unit_LIBRARY = -lIfetch_unit \ $(Address_management_LIBRARY) \ $(Ifetch_queue_LIBRARY) \ $(Ifetch_unit_Glue_LIBRARY) \ $(Behavioural_LIBRARY) #-----[ Rules ]-------------------------------------------- Ifetch_unit_library_only : @\ $(MAKE) --directory=$(Ifetch_unit_DIR) --makefile=Makefile; Ifetch_unit_library_clean_only : @\ $(MAKE) --directory=$(Ifetch_unit_DIR) --makefile=Makefile clean; Ifetch_unit_library : Ifetch_unit_library_only @\ $(MAKE) Behavioural_library; \ $(MAKE) Address_management_library; \ $(MAKE) Ifetch_queue_library; \ $(MAKE) Ifetch_unit_Glue_library; Ifetch_unit_library_clean : Ifetch_unit_library_clean_only @\ $(MAKE) Behavioural_library_clean; \ $(MAKE) Address_management_library_clean; \ $(MAKE) Ifetch_queue_library_clean; \ $(MAKE) Ifetch_unit_Glue_library_clean;