# # $Id: Makefile.deps 142 2010-08-04 20:09:03Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Dcache_Access = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif ifndef Priority include $(DIR_MORPHEO)/Behavioural/Generic/Priority/Makefile.deps endif #-----[ Directory ]---------------------------------------- Dcache_Access_DIR = $(DIR_MORPHEO)/Behavioural/Core/Dcache_Access #-----[ Library ]------------------------------------------ Dcache_Access_LIBRARY = -lDcache_Access \ $(Priority_LIBRARY) \ $(Behavioural_LIBRARY) #-----[ Rules ]-------------------------------------------- Dcache_Access_library_only : @\ $(MAKE) --directory=$(Dcache_Access_DIR) --makefile=Makefile; Dcache_Access_library_clean_only: @\ $(MAKE) --directory=$(Dcache_Access_DIR) --makefile=Makefile clean; Dcache_Access_library : Dcache_Access_library_only @\ $(MAKE) Behavioural_library; \ $(MAKE) Priority_library; Dcache_Access_library_clean : Dcache_Access_library_clean_only @\ $(MAKE) Behavioural_library_clean; \ $(MAKE) Priority_library_clean;