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

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

Add new component : Read_unit (no tested)
Change functionnal_unit : now use type and operation to execute the good function
Change New_Component's script

File size: 1.6 KB
Line 
1#
2# $Id$
3#
4# [ Description ]
5#
6# Makefile
7#
8# DIR_MORPHEO must be defined
9
10Read_unit                       = yes
11
12ifndef Behavioural
13include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Read_queue
16include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Read_queue/Makefile.deps
17endif
18ifndef Reservation_station
19include                         $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit/Reservation_station/Makefile.deps
20endif
21
22#-----[ Directory ]----------------------------------------
23
24Read_unit_DIR                   =       $(DIR_MORPHEO)/Behavioural/Core/Multi_Execute_loop/Execute_loop/Multi_Read_unit/Read_unit
25
26#-----[ Library ]------------------------------------------
27Read_unit_LIBRARY               =       -lRead_unit                     \
28                                        $(Behavioural_LIBRARY)          \
29                                        $(Read_queue_LIBRARY)           \
30                                        $(Reservation_station_LIBRARY)
31
32Read_unit_DIR_LIBRARY           =       -L$(Read_unit_DIR)/lib          \
33                                        $(Behavioural_DIR_LIBRARY)      \
34                                        $(Read_queue_DIR_LIBRARY)       \
35                                        $(Reservation_station_DIR_LIBRARY)
36
37Read_unit_DEPENDENCIES          =       Behavioural_library             \
38                                        Read_queue_library              \
39                                        Reservation_station_library
40
41Read_unit_CLEAN                 =       Behavioural_library_clean       \
42                                        Read_queue_library_clean        \
43                                        Reservation_station_library_clean
44
45#-----[ Rules ]--------------------------------------------
46
47.NOTPARALLEL                    : Read_unit_library
48.NOTPARALLEL                    : Read_unit_library_clean
49
50Read_unit_library               : $(Read_unit_DEPENDENCIES)
51                                @\
52                                $(MAKE) --directory=$(Read_unit_DIR) --makefile=Makefile;
53
54Read_unit_library_clean         : $(Read_unit_CLEAN)
55                                @\
56                                $(MAKE) --directory=$(Read_unit_DIR) --makefile=Makefile clean;
Note: See TracBrowser for help on using the repository browser.