# # $Id: Makefile.deps 142 2010-08-04 20:09:03Z rosiere $ # # [ Description ] # # Makefile # # DIR_MORPHEO must be defined Reservation_station = yes ifndef Behavioural include $(DIR_MORPHEO)/Behavioural/Makefile.deps endif ifndef Queue_Control include $(DIR_MORPHEO)/Behavioural/Generic/Queue_Control/Makefile.deps endif #-----[ Library ]------------------------------------------ Reservation_station_LIBRARY = -lReservation_station \ $(Queue_Control_LIBRARY)\ $(Behavioural_LIBRARY) #-----[ Rules ]-------------------------------------------- Reservation_station_library_only : @\ $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station --makefile=Makefile; Reservation_station_library_clean_only : @\ $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station --makefile=Makefile clean; Reservation_station_library : Reservation_station_library_only @\ $(MAKE) Queue_Control_library; \ $(MAKE) Behavioural_library; Reservation_station_library_clean : Reservation_station_library_clean_only @\ $(MAKE) Queue_Control_library_clean; \ $(MAKE) Behavioural_library_clean;