source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Free_List_unit/Makefile.deps @ 109

Last change on this file since 109 was 109, checked in by rosiere, 15 years ago

1) Configuration : instance configuration file : regroup similar instance
2) Configuration : timing default = 0
3) Debug/Commit_unit : Add watch dog timer
4) Issue_queue : Test parameters : add test if type is optionnal
5) Cor_glue : Fix insert index
6) Free_list : remove bank_by_pop (else deadlock)
7) Update Free List : add register to source event

  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1#
2# $Id: Makefile.deps 109 2009-02-16 20:28:31Z rosiere $
3#
4# [ Description ]
5#
6# Makefile
7#
8# DIR_MORPHEO must be defined
9
10Free_List_unit                  = yes
11
12ifndef Behavioural
13include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15
16ifndef Priority
17include                         $(DIR_MORPHEO)/Behavioural/Generic/Priority/Makefile.deps
18endif
19
20#-----[ Directory ]----------------------------------------
21
22Free_List_unit_DIR              =       $(DIR_MORPHEO)/Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/Register_translation_unit/Free_List_unit
23
24#-----[ Library ]------------------------------------------
25
26Free_List_unit_LIBRARY          =       -lFree_List_unit                \
27                                        $(Priority_LIBRARY)             \
28                                        $(Behavioural_LIBRARY) 
29
30Free_List_unit_DIR_LIBRARY      =       -L$(Free_List_unit_DIR)/lib     \
31                                        $(Priority_DIR_LIBRARY)         \
32                                        $(Behavioural_DIR_LIBRARY)
33
34#-----[ Rules ]--------------------------------------------
35
36Free_List_unit_library          :
37                                @\
38                                $(MAKE) Behavioural_library;            \
39                                $(MAKE) Priority_library;               \
40                                $(MAKE) --directory=$(Free_List_unit_DIR) --makefile=Makefile;
41
42Free_List_unit_library_clean    :
43                                @\
44                                $(MAKE) Behavioural_library_clean;      \
45                                $(MAKE) Priority_library_clean;         \
46                                $(MAKE) --directory=$(Free_List_unit_DIR) --makefile=Makefile clean;
Note: See TracBrowser for help on using the repository browser.