# # $Id: Makefile.deps 142 2010-08-04 20:09:03Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Behavioural = yes ifndef Common include $(DIR_MORPHEO)/Common/Makefile.deps endif #-----[ Directory ]---------------------------------------- Behavioural_DIR = $(DIR_MORPHEO)/Behavioural #-----[ Library ]------------------------------------------ Behavioural_LIBRARY = -lBehavioural \ -lCommon #-----[ Rules ]-------------------------------------------- Behavioural_library_only : @\ $(MAKE) --directory=$(Behavioural_DIR) --makefile=Makefile; Behavioural_library_clean_only : @\ $(MAKE) --directory=$(Behavioural_DIR) --makefile=Makefile clean; Behavioural_library : Behavioural_library_only @\ $(MAKE) Common_library; Behavioural_library_clean : Behavioural_library_clean_only @\ $(MAKE) Common_library_clean;