|
Last change
on this file since 124 was
124,
checked in by rosiere, 16 years ago
|
|
1) Add test and configuration
2) Fix Bug
3) Add log file in load store unit
4) Fix Bug in environment
|
-
Property svn:keywords set to
Id
|
|
File size:
965 bytes
|
| Line | |
|---|
| 1 | # |
|---|
| 2 | # $Id: Makefile 124 2009-06-17 12:11:25Z rosiere $ |
|---|
| 3 | # |
|---|
| 4 | # [ Description ] |
|---|
| 5 | # |
|---|
| 6 | # Makefile |
|---|
| 7 | # |
|---|
| 8 | |
|---|
| 9 | include Makefile.defs |
|---|
| 10 | |
|---|
| 11 | # common definition |
|---|
| 12 | DIR_SOFT = .. |
|---|
| 13 | |
|---|
| 14 | DIR_SRC = ./src |
|---|
| 15 | DIR_C = $(DIR_SRC)/c |
|---|
| 16 | DIR_ASM = $(DIR_SRC)/asm |
|---|
| 17 | DIR_SYS = $(DIR_SRC)/sys |
|---|
| 18 | DIR_INC = $(DIR_SRC)/include |
|---|
| 19 | DIR_LDSCRIPT = $(NEWLIB)/lib/ |
|---|
| 20 | |
|---|
| 21 | INCDIR = $(NEWLIB_INCDIR) -I$(DIR_INC) |
|---|
| 22 | LIBDIR = $(NEWLIB_LIBDIR) |
|---|
| 23 | LIBNAME = $(NEWLIB_LIBNAME) |
|---|
| 24 | |
|---|
| 25 | MIBENCH_DATA_PATH = $(MORPHEO_TOPLEVEL)/Softwares/MiBench/data |
|---|
| 26 | |
|---|
| 27 | FLAGS = -DMIBENCH_DATA_PATH=\"$(MIBENCH_DATA_PATH)\" -DNB_THREAD_MAX=$(NB_THREAD_MAX) |
|---|
| 28 | |
|---|
| 29 | #-----[ Files ]------------------------------------------------------------------- |
|---|
| 30 | OBJECTS = $(NEWLIB)/lib/*.o \ |
|---|
| 31 | $(patsubst $(DIR_ASM)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_ASM)/*.s)) \ |
|---|
| 32 | $(patsubst $(DIR_SYS)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_SYS)/*.s)) \ |
|---|
| 33 | $(patsubst $(DIR_C)/%.c,$(DIR_OBJ)/%.o,$(wildcard $(DIR_C)/*.c)) |
|---|
| 34 | |
|---|
| 35 | include $(DIR_SOFT)/Makefile.Software |
|---|
| 36 | include $(DIR_SOFT)/Makefile.Workload |
|---|
| 37 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.