source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_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.7 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
10Ifetch_unit                     = yes
11
12ifndef Behavioural
13include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Address_management
16include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Address_management/Makefile.deps
17endif
18ifndef Ifetch_queue
19include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_queue/Makefile.deps
20endif
21ifndef Ifetch_unit_Glue
22include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit/Ifetch_unit_Glue/Makefile.deps
23endif
24
25#-----[ Directory ]----------------------------------------
26
27Ifetch_unit_DIR                 =       $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Ifetch_unit
28
29#-----[ Library ]------------------------------------------
30
31Ifetch_unit_LIBRARY             =       -lIfetch_unit                   \
32                                        $(Address_management_LIBRARY)   \
33                                        $(Ifetch_queue_LIBRARY)         \
34                                        $(Ifetch_unit_Glue_LIBRARY)     \
35                                        $(Behavioural_LIBRARY) 
36
37#-----[ Rules ]--------------------------------------------
38
39Ifetch_unit_library_only        :
40                                @\
41                                $(MAKE) --directory=$(Ifetch_unit_DIR)          --makefile=Makefile;
42
43Ifetch_unit_library_clean_only  :
44                                @\
45                                $(MAKE) --directory=$(Ifetch_unit_DIR)          --makefile=Makefile clean;
46
47Ifetch_unit_library             : Ifetch_unit_library_only
48                                @\
49                                $(MAKE) Behavioural_library;            \
50                                $(MAKE) Address_management_library;     \
51                                $(MAKE) Ifetch_queue_library;           \
52                                $(MAKE) Ifetch_unit_Glue_library;
53
54Ifetch_unit_library_clean       : Ifetch_unit_library_clean_only
55                                @\
56                                $(MAKE) Behavioural_library_clean;              \
57                                $(MAKE) Address_management_library_clean;       \
58                                $(MAKE) Ifetch_queue_library_clean;             \
59                                $(MAKE) Ifetch_unit_Glue_library_clean;
Note: See TracBrowser for help on using the repository browser.