# # $Id: Makefile.deps 142 2010-08-04 20:09:03Z 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) #-----[ Rules ]-------------------------------------------- Icache_Access_library_only : @\ $(MAKE) --directory=$(Icache_Access_DIR) --makefile=Makefile; Icache_Access_library_clean_only: @\ $(MAKE) --directory=$(Icache_Access_DIR) --makefile=Makefile clean; Icache_Access_library : Icache_Access_library_only @\ $(MAKE) Behavioural_library; \ $(MAKE) Priority_library; Icache_Access_library_clean : Icache_Access_library_clean_only @\ $(MAKE) Behavioural_library_clean; \ $(MAKE) Priority_library_clean;