# # $Id: Makefile.deps 88 2008-12-10 18:31:39Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Icache_Access = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif ifndef Priority include $(DIR_MORPHEO)/Behavioural/Generic/Priority/Makefile.deps endif #-----[ Directory ]---------------------------------------- Icache_Access_DIR = $(DIR_MORPHEO)/Behavioural/Core/Icache_Access #-----[ Library ]------------------------------------------ Icache_Access_LIBRARY = -lIcache_Access \ $(Priority_LIBRARY) \ $(Behavioural_LIBRARY) Icache_Access_DIR_LIBRARY = -L$(Icache_Access_DIR)/lib \ $(Priority_DIR_LIBRARY) \ $(Behavioural_DIR_LIBRARY) #-----[ Rules ]-------------------------------------------- Icache_Access_library : @\ $(MAKE) Behavioural_library; \ $(MAKE) Priority_library; \ $(MAKE) --directory=$(Icache_Access_DIR) --makefile=Makefile; Icache_Access_library_clean : @\ $(MAKE) Behavioural_library_clean; \ $(MAKE) Priority_library_clean; \ $(MAKE) --directory=$(Icache_Access_DIR) --makefile=Makefile clean;