# # $Id: Makefile.deps 142 2010-08-04 20:09:03Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Execute_queue = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif ifndef Queue include $(DIR_MORPHEO)/Behavioural/Generic/Queue/Makefile.deps endif #-----[ Directory ]---------------------------------------- Execute_queue_DIR = $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Execute_queue #-----[ Library ]------------------------------------------ Execute_queue_LIBRARY = -lExecute_queue \ $(Queue_LIBRARY) \ $(Behavioural_LIBRARY) #-----[ Rules ]-------------------------------------------- Execute_queue_library_only : @\ $(MAKE) --directory=$(Execute_queue_DIR) --makefile=Makefile; Execute_queue_library_clean_only: @\ $(MAKE) --directory=$(Execute_queue_DIR) --makefile=Makefile clean; Execute_queue_library : Execute_queue_library_only @\ $(MAKE) Behavioural_library; \ $(MAKE) Queue_library; Execute_queue_library_clean : Execute_queue_library_clean_only @\ $(MAKE) Behavioural_library_clean; \ $(MAKE) Queue_library_clean;