source: trunk/IPs/systemC/processor/Morpheo/Behavioural/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: 825 bytes
RevLine 
[2]1#
2# $Id$
3#
[77]4# [ Description ]
[2]5#
6# Makefile
7#
8# DIR_MORPHEO must be defined
9
[53]10Behavioural                     = yes
11
[71]12ifndef Common
13include $(DIR_MORPHEO)/Common/Makefile.deps
14endif
[2]15
[77]16#-----[ Directory ]----------------------------------------
[2]17
[77]18Behavioural_DIR                 =       $(DIR_MORPHEO)/Behavioural
[2]19
[77]20#-----[ Library ]------------------------------------------
[43]21
[78]22Behavioural_LIBRARY             =       -lBehavioural   \
23                                        -lCommon                                       
[71]24
[78]25Behavioural_DIR_LIBRARY         =       -L$(Behavioural_DIR)/lib        \
26                                        -L$(Common_DIR)/lib
[71]27
[77]28#-----[ Rules ]--------------------------------------------
[2]29
[77]30Behavioural_library             :
[48]31                                @\
[78]32                                $(MAKE) Common_library;         \
[77]33                                $(MAKE) --directory=$(Behavioural_DIR)  --makefile=Makefile;
[76]34
[77]35Behavioural_library_clean       :
[48]36                                @\
[78]37                                $(MAKE) Common_library_clean;   \
[77]38                                $(MAKE) --directory=$(Behavioural_DIR)  --makefile=Makefile clean;
Note: See TracBrowser for help on using the repository browser.