source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Execute_queue/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.2 KB
RevLine 
[73]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
10Execute_queue                   = yes
11
12ifndef Behavioural
13include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
[98]15ifndef Queue
16include                         $(DIR_MORPHEO)/Behavioural/Generic/Queue/Makefile.deps
17endif
[73]18
[74]19#-----[ Directory ]----------------------------------------
20
21Execute_queue_DIR               =       $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Write_unit/Write_unit/Execute_queue
22
[73]23#-----[ Library ]------------------------------------------
[142]24
[73]25Execute_queue_LIBRARY           =       -lExecute_queue \
[98]26                                        $(Queue_LIBRARY)        \
[73]27                                        $(Behavioural_LIBRARY) 
28
29#-----[ Rules ]--------------------------------------------
30
[142]31Execute_queue_library_only      :
[73]32                                @\
[74]33                                $(MAKE) --directory=$(Execute_queue_DIR) --makefile=Makefile;
[73]34
[142]35Execute_queue_library_clean_only:
[73]36                                @\
[142]37                                $(MAKE) --directory=$(Execute_queue_DIR) --makefile=Makefile clean;
38
39Execute_queue_library           : Execute_queue_library_only
40                                @\
41                                $(MAKE) Behavioural_library; \
42                                $(MAKE) Queue_library;
43
44Execute_queue_library_clean     : Execute_queue_library_clean_only
45                                @\
[77]46                                $(MAKE) Behavioural_library_clean; \
[142]47                                $(MAKE) Queue_library_clean;
Note: See TracBrowser for help on using the repository browser.