source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/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
10Front_end                       = yes
11
12ifndef Behavioural
13include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Ifetch_unit
16include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Makefile.deps
17endif
18ifndef Prediction_unit
19include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Makefile.deps
20endif
21ifndef Decod_unit
22include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Makefile.deps
23endif
24ifndef Context_State
25include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Context_State/Makefile.deps
26endif
27ifndef Front_end_Glue
28include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Front_end_Glue/Makefile.deps
29endif
30
31#-----[ Directory ]----------------------------------------
32
33Front_end_DIR                   =       $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end
34
35#-----[ Library ]------------------------------------------
36
37Front_end_LIBRARY               =       -lFront_end                     \
38                                        $(Ifetch_unit_LIBRARY)          \
39                                        $(Prediction_unit_LIBRARY)      \
40                                        $(Decod_unit_LIBRARY)           \
41                                        $(Context_State_LIBRARY)        \
42                                        $(Front_end_Glue_LIBRARY)       \
43                                        $(Behavioural_LIBRARY) 
44
45#-----[ Rules ]--------------------------------------------
46
47Front_end_library_only          :
48                                @\
49                                $(MAKE) --directory=$(Front_end_DIR) --makefile=Makefile;
50
51Front_end_library_clean_only    :
52                                @\
53                                $(MAKE) --directory=$(Front_end_DIR) --makefile=Makefile clean;
54
55Front_end_library               : Front_end_library_only
56                                @\
57                                $(MAKE) Behavioural_library;            \
58                                $(MAKE) Ifetch_unit_library;            \
59                                $(MAKE) Prediction_unit_library;        \
60                                $(MAKE) Decod_unit_library;             \
61                                $(MAKE) Context_State_library;          \
62                                $(MAKE) Front_end_Glue_library;
63
64Front_end_library_clean         : Front_end_library_clean_only
65                                @\
66                                $(MAKE) Behavioural_library_clean;      \
67                                $(MAKE) Ifetch_unit_library_clean;      \
68                                $(MAKE) Prediction_unit_library_clean;  \
69                                $(MAKE) Decod_unit_library_clean;       \
70                                $(MAKE) Context_State_library_clean;    \
71                                $(MAKE) Front_end_Glue_library_clean;
Note: See TracBrowser for help on using the repository browser.