source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Queue/Makefile.deps @ 74

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

New component : Read_unit (instance between a write queue and a optionnal execute_queue)

File size: 1.2 KB
Line 
1#
2# $Id$
3#
4# [ Description ]
5#
6# Makefile
7#
8# DIR_MORPHEO must be defined
9
10Queue                           = yes
11
12ifndef Behavioural
13include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Queue_Control
16include                         $(DIR_MORPHEO)/Behavioural/Generic/Queue_Control/Makefile.deps
17endif
18
19#-----[ Library ]------------------------------------------
20Queue_LIBRARY                   =       -lQueue \
21                                        $(Queue_Control_LIBRARY)\
22                                        $(Behavioural_LIBRARY) 
23
24Queue_DIR_LIBRARY               =       -L$(DIR_MORPHEO)/Behavioural/Generic/Queue/lib  \
25                                        $(Queue_Control_DIR_LIBRARY)\
26                                        $(Behavioural_DIR_LIBRARY)
27
28Queue_DEPENDENCIES              =       Queue_Control_library   \
29                                        Behavioural_library
30
31Queue_CLEAN                     =       Queue_Control_library_clean     \
32                                        Behavioural_library_clean
33
34#-----[ Rules ]--------------------------------------------
35
36#.NOTPARALLEL                   : Queue_library Queue_library_clean
37
38Queue_library                   : $(Queue_DEPENDENCIES)
39                                @\
40                                $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Generic/Queue --makefile=Makefile;
41
42Queue_library_clean             : $(Queue_CLEAN)
43                                @\
44                                $(MAKE) --directory=$(DIR_MORPHEO)/Behavioural/Generic/Queue --makefile=Makefile clean;
Note: See TracBrowser for help on using the repository browser.