# # $Id: Makefile.deps 142 2010-08-04 20:09:03Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Meta_Predictor = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif ifndef Meta_Predictor_Glue include $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Meta_Predictor_Glue/Makefile.deps endif ifndef Two_Level_Branch_Predictor include $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Makefile.deps endif #-----[ Directory ]---------------------------------------- Meta_Predictor_DIR = $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor #-----[ Library ]------------------------------------------ Meta_Predictor_LIBRARY = -lMeta_Predictor \ $(Meta_Predictor_Glue_LIBRARY) \ $(Two_Level_Branch_Predictor_LIBRARY) \ $(Behavioural_LIBRARY) #-----[ Rules ]-------------------------------------------- Meta_Predictor_library_only : @\ $(MAKE) --directory=$(Meta_Predictor_DIR) --makefile=Makefile; Meta_Predictor_library_clean_only : @\ $(MAKE) --directory=$(Meta_Predictor_DIR) --makefile=Makefile clean; Meta_Predictor_library : Meta_Predictor_library_only @\ $(MAKE) Behavioural_library; \ $(MAKE) Meta_Predictor_Glue_library; \ $(MAKE) Two_Level_Branch_Predictor_library; Meta_Predictor_library_clean : Meta_Predictor_library_clean_only @\ $(MAKE) Behavioural_library_clean; \ $(MAKE) Meta_Predictor_Glue_library_clean; \ $(MAKE) Two_Level_Branch_Predictor_library_clean;