# # $Id: Makefile.deps 100 2009-01-08 13:06:27Z 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) Queue_DIR_LIBRARY = -L$(DIR_MORPHEO)/Behavioural/Generic/Queue/lib \ $(Queue_Control_DIR_LIBRARY)\ $(Behavioural_DIR_LIBRARY) #-----[ Rules ]-------------------------------------------- #.NOTPARALLEL : Queue_library Queue_library_clean Queue_library : @\ $(MAKE) Behavioural_library;\ $(MAKE) Queue_Control_library;\ $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Generic/Queue --makefile=Makefile; Queue_library_clean : @\ $(MAKE) Behavioural_library_clean;\ $(MAKE) Queue_Control_library_clean;\ $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Generic/Queue --makefile=Makefile clean;