source: trunk/Softwares/Dhrystone/Makefile @ 112

Last change on this file since 112 was 112, checked in by rosiere, 15 years ago

1) Stat_list : fix retire old and new register bug
2) Stat_list : remove read_counter and valid flag, because validation of destination is in retire step (not in commit step)
3) Model : add class Model (cf Morpheo.sim)
4) Allocation : alloc_interface_begin and alloc_interface_end to delete temporary array.
5) Script : add distexe.sh
6) Add Comparator, Multiplier, Divider. But this component are not implemented
7) Software : add Dhrystone

  • Property svn:keywords set to Id
File size: 744 bytes
Line 
1#
2# $Id: Makefile 112 2009-03-18 22:36:26Z rosiere $
3#
4# [ Description ]
5#
6# Makefile
7#
8
9
10# common definition
11DIR_SOFT                        = ..
12
13DIR_SRC                         = ./src
14DIR_C                           = $(DIR_SRC)/c
15DIR_ASM                         = $(DIR_SRC)/asm
16DIR_SYS                         = $(DIR_SRC)/sys
17DIR_INC                         = $(DIR_SRC)/include
18DIR_LDSCRIPT                    = $(NEWLIB)/lib/
19
20INCDIR                          = $(NEWLIB_INCDIR) -I$(DIR_INC)
21LIBDIR                          = $(NEWLIB_LIBDIR)
22LIBNAME                         = $(NEWLIB_LIBNAME)
23
24#-----[ Files ]-------------------------------------------------------------------
25OBJECTS                         =       $(NEWLIB)/lib/*.o \
26                                        $(patsubst $(DIR_ASM)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_ASM)/*.s))    \
27                                        $(patsubst $(DIR_SYS)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_SYS)/*.s))    \
28                                        $(patsubst $(DIR_C)/%.c,$(DIR_OBJ)/%.o,$(wildcard $(DIR_C)/*.c))
29
30include                         $(DIR_SOFT)/Makefile.Software
31
Note: See TracBrowser for help on using the repository browser.