source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod/Makefile.deps @ 78

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

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File size: 1.0 KB
Line 
1#
2# $Id$
3#
4# [ Description ]
5#
6# Makefile
7#
8# DIR_MORPHEO must be defined
9
10Decod                   = yes
11
12ifndef Behavioural
13include                         $(DIR_MORPHEO)/Behavioural/Makefile.deps
14endif
15ifndef Custom
16include                         $(DIR_MORPHEO)/Behavioural/Custom/Makefile.deps
17endif
18
19#-----[ Directory ]----------------------------------------
20
21Decod_DIR                       =       $(DIR_MORPHEO)/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod
22
23#-----[ Library ]------------------------------------------
24
25Decod_LIBRARY                   =       -lDecod \
26                                        $(Custom_LIBRARY)               \
27                                        $(Behavioural_LIBRARY) 
28
29Decod_DIR_LIBRARY               =       -L$(Decod_DIR)/lib      \
30                                        $(Custom_DIR_LIBRARY)           \
31                                        $(Behavioural_DIR_LIBRARY)
32
33#-----[ Rules ]--------------------------------------------
34
35Decod_library                   :
36                                @\
37                                $(MAKE) Behavioural_library;            \
38                                $(MAKE) Custom_library;                 \
39                                $(MAKE) --directory=$(Decod_DIR) --makefile=Makefile;
40
41Decod_library_clean     :
42                                @\
43                                $(MAKE) Behavioural_library_clean;      \
44                                $(MAKE) Custom_library_clean;           \
45                                $(MAKE) --directory=$(Decod_DIR) --makefile=Makefile clean;
46
Note: See TracBrowser for help on using the repository browser.