# # $Id: Makefile.deps 142 2010-08-04 20:09:03Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Queue = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif ifndef Queue_Control include $(DIR_MORPHEO)/Behavioural/Generic/Queue_Control/Makefile.deps endif #-----[ Library ]------------------------------------------ Queue_LIBRARY = -lQueue \ $(Queue_Control_LIBRARY)\ $(Behavioural_LIBRARY) #-----[ Rules ]-------------------------------------------- Queue_library_only : @\ $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Generic/Queue --makefile=Makefile; Queue_library_clean_only : @\ $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Generic/Queue --makefile=Makefile clean; Queue_library : Queue_library_only @\ $(MAKE) Behavioural_library;\ $(MAKE) Queue_Control_library; Queue_library_clean : Queue_library_clean_only @\ $(MAKE) Behavioural_library_clean;\ $(MAKE) Queue_Control_library_clean;