source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Makefile.deps @ 142

Last change on this file since 142 was 142, checked in by rosiere, 14 years ago

1) Full parallel compilation
2) Add statistics in ROB : list instruction affinity

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1#
2# $Id: Makefile.deps 142 2010-08-04 20:09:03Z rosiere $
3#
4# [ Description ]
5#
6# Makefile
7#
8# DIR_MORPHEO must be defined
9
10Prediction_unit                         = yes
11
12ifndef Behavioural
13include                                 $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Branch_Target_Buffer
16include                                 $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Branch_Target_Buffer/Makefile.deps
17endif
18ifndef Direction
19include                                 $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Makefile.deps
20endif
21ifndef Return_Address_Stack
22include                                 $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Return_Address_Stack/Makefile.deps
23endif
24ifndef Update_Prediction_Table
25include                                 $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Update_Prediction_Table/Makefile.deps
26endif
27ifndef Prediction_unit_Glue
28include                                 $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Prediction_unit_Glue/Makefile.deps
29endif
30
31#-----[ Directory ]----------------------------------------
32
33Prediction_unit_DIR                     =       $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit
34
35#-----[ Library ]------------------------------------------
36
37Prediction_unit_LIBRARY                 =       -lPrediction_unit                       \
38                                                $(Behavioural_LIBRARY)                  \
39                                                $(Branch_Target_Buffer_LIBRARY)         \
40                                                $(Direction_LIBRARY)                    \
41                                                $(Return_Address_Stack_LIBRARY)         \
42                                                $(Update_Prediction_Table_LIBRARY)      \
43                                                $(Prediction_unit_Glue_LIBRARY)
44
45#-----[ Rules ]--------------------------------------------
46
47Prediction_unit_library_only            :
48                                        @\
49                                        $(MAKE) --directory=$(Prediction_unit_DIR) --makefile=Makefile;
50
51Prediction_unit_library_clean_only      :
52                                        @\
53                                        $(MAKE) --directory=$(Prediction_unit_DIR) --makefile=Makefile clean;
54
55Prediction_unit_library                 : Prediction_unit_library_only
56                                        @\
57                                        $(MAKE) Behavioural_library;                    \
58                                        $(MAKE) Branch_Target_Buffer_library;           \
59                                        $(MAKE) Direction_library;                      \
60                                        $(MAKE) Return_Address_Stack_library;           \
61                                        $(MAKE) Update_Prediction_Table_library;        \
62                                        $(MAKE) Prediction_unit_Glue_library;
63
64Prediction_unit_library_clean           : Prediction_unit_library_clean_only
65                                        @\
66                                        $(MAKE) Behavioural_library_clean;              \
67                                        $(MAKE) Branch_Target_Buffer_library_clean;     \
68                                        $(MAKE) Direction_library_clean;                \
69                                        $(MAKE) Return_Address_Stack_library_clean;     \
70                                        $(MAKE) Update_Prediction_Table_library_clean;  \
71                                        $(MAKE) Prediction_unit_Glue_library_clean;
Note: See TracBrowser for help on using the repository browser.