source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/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
10Core                            = yes
11
12ifndef Behavioural
13include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Icache_Access
16include                         $(DIR_MORPHEO)/Behavioural/Core/Icache_Access/Makefile.deps
17endif
18ifndef Dcache_Access
19include                         $(DIR_MORPHEO)/Behavioural/Core/Dcache_Access/Makefile.deps
20endif
21ifndef Front_end
22include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Makefile.deps
23endif
24ifndef OOO_Engine
25include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Makefile.deps
26endif
27ifndef Execute_loop
28include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Makefile.deps
29endif
30ifndef Core_Glue
31include                         $(DIR_MORPHEO)/Behavioural/Core/Core_Glue/Makefile.deps
32endif
33
34#-----[ Directory ]----------------------------------------
35
36Core_DIR                        =       $(DIR_MORPHEO)/Behavioural/Core
37
38#-----[ Library ]------------------------------------------
39
40Core_LIBRARY                    =       -lCore                          \
41                                        $(Icache_Access_LIBRARY)        \
42                                        $(Dcache_Access_LIBRARY)        \
43                                        $(Front_end_LIBRARY)            \
44                                        $(OOO_Engine_LIBRARY)           \
45                                        $(Execute_loop_LIBRARY)         \
46                                        $(Core_Glue_LIBRARY)            \
47                                        $(Behavioural_LIBRARY) 
48
49#-----[ Rules ]--------------------------------------------
50
51Core_library_only               :
52                                @\
53                                $(MAKE) --directory=$(Core_DIR) --makefile=Makefile;
54
55Core_library_clean_only         :
56                                @\
57                                $(MAKE) --directory=$(Core_DIR) --makefile=Makefile clean;
58
59Core_library                    : Core_library_only
60                                @\
61                                $(MAKE) Behavioural_library;            \
62                                $(MAKE) Icache_Access_library;          \
63                                $(MAKE) Dcache_Access_library;          \
64                                $(MAKE) Front_end_library;              \
65                                $(MAKE) OOO_Engine_library;             \
66                                $(MAKE) Execute_loop_library;           \
67                                $(MAKE) Core_Glue_library;
68
69Core_library_clean              : Core_library_clean_only
70                                @\
71                                $(MAKE) Behavioural_library_clean;      \
72                                $(MAKE) Icache_Access_library_clean;    \
73                                $(MAKE) Dcache_Access_library_clean;    \
74                                $(MAKE) Front_end_library_clean;        \
75                                $(MAKE) OOO_Engine_library_clean;       \
76                                $(MAKE) Execute_loop_library_clean;     \
77                                $(MAKE) Core_Glue_library_clean;
Note: See TracBrowser for help on using the repository browser.