source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Makefile.deps @ 88

Last change on this file since 88 was 88, checked in by rosiere, 16 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1#
2# $Id: Makefile.deps 88 2008-12-10 18:31:39Z rosiere $
3#
4# [ Description ]
5#
6# Makefile
7#
8# DIR_MORPHEO must be defined
9
10Execute_loop                    = yes
11
12ifndef Behavioural
13include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Execute_loop_Glue
16include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Execute_loop_Glue/Makefile.deps
17endif
18ifndef Read_unit
19include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Makefile.deps
20endif
21ifndef Functionnal_unit
22include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Functionnal_unit/Makefile.deps
23endif
24ifndef Load_store_unit
25include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Load_store_unit/Makefile.deps
26endif
27ifndef Write_unit
28include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Makefile.deps
29endif
30ifndef Register_unit
31include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Register_unit/Makefile.deps
32endif
33ifndef Read_unit_to_Execution_unit
34include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Network/Read_unit_to_Execution_unit/Makefile.deps
35endif
36ifndef Execution_unit_to_Write_unit
37include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Network/Execution_unit_to_Write_unit/Makefile.deps
38endif
39
40#-----[ Directory ]----------------------------------------
41
42Execute_loop_DIR                =       $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop
43
44#-----[ Library ]------------------------------------------
45
46Execute_loop_LIBRARY            =       -lExecute_loop                          \
47                                        $(Behavioural_LIBRARY)                  \
48                                        $(Execute_loop_Glue_LIBRARY)            \
49                                        $(Read_unit_LIBRARY)                    \
50                                        $(Functionnal_unit_LIBRARY)             \
51                                        $(Load_store_unit_LIBRARY)              \
52                                        $(Write_unit_LIBRARY)                   \
53                                        $(Register_unit_LIBRARY)                \
54                                        $(Read_unit_to_Execution_unit_LIBRARY)  \
55                                        $(Execution_unit_to_Write_unit_LIBRARY)
56
57
58Execute_loop_DIR_LIBRARY        =       -L$(Execute_loop_DIR)/lib                       \
59                                        $(Behavioural_DIR_LIBRARY)                      \
60                                        $(Execute_loop_Glue_DIR_LIBRARY)                \
61                                        $(Read_unit_DIR_LIBRARY)                        \
62                                        $(Functionnal_unit_DIR_LIBRARY)                 \
63                                        $(Load_store_unit_DIR_LIBRARY)                  \
64                                        $(Write_unit_DIR_LIBRARY)                       \
65                                        $(Register_unit_DIR_LIBRARY)                    \
66                                        $(Read_unit_to_Execution_unit_DIR_LIBRARY)      \
67                                        $(Execution_unit_to_Write_unit_DIR_LIBRARY)     
68
69
70#-----[ Rules ]--------------------------------------------
71
72Execute_loop_library            :
73                                @\
74                                $(MAKE) Behavioural_library;                    \
75                                $(MAKE) Execute_loop_Glue_library;              \
76                                $(MAKE) Read_unit_library;                      \
77                                $(MAKE) Functionnal_unit_library;               \
78                                $(MAKE) Load_store_unit_library;                \
79                                $(MAKE) Write_unit_library;                     \
80                                $(MAKE) Register_unit_library;                  \
81                                $(MAKE) Read_unit_to_Execution_unit_library;    \
82                                $(MAKE) Execution_unit_to_Write_unit_library;   \
83                                $(MAKE) --directory=$(Execute_loop_DIR) --makefile=Makefile;
84
85Execute_loop_library_clean      :
86                                @\
87                                $(MAKE) Behavioural_library_clean;                      \
88                                $(MAKE) Execute_loop_Glue_library_clean;                \
89                                $(MAKE) Read_unit_library_clean;                        \
90                                $(MAKE) Functionnal_unit_library_clean;                 \
91                                $(MAKE) Load_store_unit_library_clean;                  \
92                                $(MAKE) Write_unit_library_clean;                       \
93                                $(MAKE) Register_unit_library_clean;                    \
94                                $(MAKE) Read_unit_to_Execution_unit_library_clean;      \
95                                $(MAKE) Execution_unit_to_Write_unit_library_clean;     \
96                                $(MAKE) --directory=$(Execute_loop_DIR) --makefile=Makefile clean;
Note: See TracBrowser for help on using the repository browser.