# # $Id: Makefile.deps 88 2008-12-10 18:31:39Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Morpheo = yes ifndef Configuration include $(DIR_MORPHEO)/Behavioural/Configuration/Makefile.deps endif ifndef Core include $(DIR_MORPHEO)/Behavioural/Core/Makefile.deps endif #-----[ Directory ]---------------------------------------- Morpheo_DIR = $(DIR_MORPHEO)/TopLevel #-----[ Library ]------------------------------------------ Morpheo_LIBRARY = -lMorpheo \ $(Configuration_LIBRARY) \ $(Core_LIBRARY) Morpheo_DIR_LIBRARY = -L$(Morpheo_DIR)/lib \ $(Configuration_DIR_LIBRARY) \ $(Core_DIR_LIBRARY) #-----[ Rules ]-------------------------------------------- Morpheo_library : @\ $(MAKE) Configuration_library; \ $(MAKE) Core_library; \ $(MAKE) --directory=$(Morpheo_DIR) --makefile=Makefile; Morpheo_library_clean : @\ $(MAKE) Configuration_library_clean; \ $(MAKE) Core_library_clean; \ $(MAKE) --directory=$(Morpheo_DIR) --makefile=Makefile clean;