Last change
on this file since 119 was
117,
checked in by rosiere, 15 years ago
|
1) Platforms : add new organization for test
2) Load_Store_Unit : add array to count nb_check in store_queue
3) Issue_queue and Core_Glue : rewrite the issue network
4) Special_Register_Unit : add reset value to register CID
5) Softwares : add multicontext test
6) Softwares : add SPECINT
7) Softwares : add MiBench?
7) Read_queue : inhib access for r0
8) Change Core_Glue (network) - dont yet support priority and load balancing scheme
|
-
Property svn:keywords set to
Id
|
File size:
684 bytes
|
Line | |
---|
1 | # |
---|
2 | # $Id: Makefile 117 2009-05-16 14:42:39Z rosiere $ |
---|
3 | # |
---|
4 | # [ Description ] |
---|
5 | # |
---|
6 | # Makefile |
---|
7 | # |
---|
8 | |
---|
9 | # common definition |
---|
10 | DIR_SOFT = ../.. |
---|
11 | DIR_SRC = ./src |
---|
12 | DIR_C = $(DIR_SRC)/c |
---|
13 | DIR_ASM = $(DIR_SRC)/asm |
---|
14 | DIR_SYS = $(DIR_SRC)/sys |
---|
15 | DIR_INC = $(DIR_SRC)/include |
---|
16 | DIR_LDSCRIPT = $(DIR_SOFT)/Common/ldscript/ |
---|
17 | |
---|
18 | INCDIR = -I$(DIR_INC) |
---|
19 | LIBDIR = |
---|
20 | LIBNAME = |
---|
21 | |
---|
22 | #-----[ Files ]------------------------------------------------------------------- |
---|
23 | OBJECTS = $(patsubst $(DIR_ASM)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_ASM)/*.s)) \ |
---|
24 | $(patsubst $(DIR_SYS)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_SYS)/*.s)) \ |
---|
25 | $(patsubst $(DIR_C)/%.c,$(DIR_OBJ)/%.o,$(wildcard $(DIR_C)/*.c)) |
---|
26 | |
---|
27 | include $(DIR_SOFT)/Makefile.Software |
---|
28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.