source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Branch_Target_Buffer/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.1 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
10Branch_Target_Buffer                    = yes
11
12ifndef Behavioural
13include                                 $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Branch_Target_Buffer_Glue
16include                                 $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Branch_Target_Buffer/Branch_Target_Buffer_Glue/Makefile.deps
17endif
18ifndef Branch_Target_Buffer_Register
19include                                 $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Branch_Target_Buffer/Branch_Target_Buffer_Register/Makefile.deps
20endif
21ifndef Sort
22include                                 $(DIR_MORPHEO)/Behavioural/Generic/Sort/Makefile.deps
23endif
24ifndef Victim
25include                                 $(DIR_MORPHEO)/Behavioural/Generic/Victim/Makefile.deps
26endif
27
28#-----[ Directory ]----------------------------------------
29
30Branch_Target_Buffer_DIR                =       $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Branch_Target_Buffer
31
32#-----[ Library ]------------------------------------------
33
34Branch_Target_Buffer_LIBRARY            =       -lBranch_Target_Buffer                          \
35                                                $(Branch_Target_Buffer_Glue_LIBRARY)            \
36                                                $(Branch_Target_Buffer_Register_LIBRARY)        \
37                                                $(Sort_LIBRARY)                                 \
38                                                $(Victim_LIBRARY)                               \
39                                                $(Behavioural_LIBRARY) 
40
41#-----[ Rules ]--------------------------------------------
42
43Branch_Target_Buffer_library_only       :
44                                        @\
45                                        $(MAKE) --directory=$(Branch_Target_Buffer_DIR) --makefile=Makefile;
46
47Branch_Target_Buffer_library_clean_only :
48                                        @\
49                                        $(MAKE) --directory=$(Branch_Target_Buffer_DIR) --makefile=Makefile clean;
50
51Branch_Target_Buffer_library            : Branch_Target_Buffer_library_only
52                                        @\
53                                        $(MAKE) Behavioural_library;                            \
54                                        $(MAKE) Branch_Target_Buffer_Glue_library;              \
55                                        $(MAKE) Branch_Target_Buffer_Register_library;          \
56                                        $(MAKE) Sort_library;                                   \
57                                        $(MAKE) Victim_library;
58
59Branch_Target_Buffer_library_clean      : Branch_Target_Buffer_library_clean_only
60                                        @\
61                                        $(MAKE) Behavioural_library_clean;                      \
62                                        $(MAKE) Branch_Target_Buffer_Glue_library_clean;        \
63                                        $(MAKE) Branch_Target_Buffer_Register_library_clean;    \
64                                        $(MAKE) Sort_library_clean;                             \
65                                        $(MAKE) Victim_library_clean;
Note: See TracBrowser for help on using the repository browser.