source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_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: 1.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
10Register_unit                   = yes
11
12ifndef RegisterFile
13include                         $(DIR_MORPHEO)/Behavioural/Generic/RegisterFile/Makefile.deps
14endif
15ifndef Register_unit_Glue
16include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/Register_unit_Glue/Makefile.deps
17endif
18ifndef Behavioural
19include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
20endif
21
22#-----[ Library ]------------------------------------------
23
24Register_unit_LIBRARY           =       -lRegister_unit                         \
25                                        $(RegisterFile_LIBRARY)                 \
26                                        $(Register_unit_Glue_LIBRARY)           \
27                                        $(Behavioural_LIBRARY) 
28
29#-----[ Rules ]--------------------------------------------
30
31Register_unit_library_only      :
32                                @\
33                                $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit --makefile=Makefile;
34
35Register_unit_library_clean_only:
36                                @\
37                                $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit --makefile=Makefile clean;
38
39Register_unit_library           : Register_unit_library_only
40                                @\
41                                $(MAKE) RegisterFile_library;           \
42                                $(MAKE) Register_unit_Glue_library;     \
43                                $(MAKE) Behavioural_library;
44
45Register_unit_library_clean     : Register_unit_library_clean_only
46                                @\
47                                $(MAKE) RegisterFile_library_clean;             \
48                                $(MAKE) Register_unit_Glue_library_clean;       \
49                                $(MAKE) Behavioural_library_clean;
Note: See TracBrowser for help on using the repository browser.