source: trunk/IPs/systemC/Environnement/Cache/Makefile @ 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: 643 bytes
Line 
1#-----[ Directory ]----------------------------------------
2
3DIR_QUEUE                       = ../Queue
4
5#-----[ Variable ]-----------------------------------------
6
7OBJECTS_DEPS                    = $(patsubst $(DIR_QUEUE)/%.cpp,$(DIR_OBJ)/%.o,$(wildcard $(DIR_QUEUE)/*.cpp))
8
9#-----[ Rules ]--------------------------------------------
10
11all                             :
12                                @\
13                                $(MAKE) --directory=$(DIR_QUEUE) all; \
14                                $(MAKE)                          all_environnement;
15
16clean                           :
17                                @\
18                                $(MAKE) --directory=$(DIR_QUEUE) clean; \
19                                $(MAKE)                          environnement_clean;
20
21help                            :
22                                @$(MAKE) environnement_help
23
24include                         ../Makefile.Environnement
Note: See TracBrowser for help on using the repository browser.