source: trunk/Softwares/Test/Test_001/Makefile @ 88

Last change on this file since 88 was 88, checked in by rosiere, 16 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 669 bytes
Line 
1#
2# $Id: Makefile 88 2008-12-10 18:31:39Z rosiere $
3#
4# [ Description ]
5#
6# Makefile
7#
8
9# common definition
10DIR_SOFT                        = ../..
11DIR_SRC                         = ./src
12DIR_C                           = $(DIR_SRC)/c
13DIR_ASM                         = $(DIR_SRC)/asm
14DIR_SYS                         = $(DIR_SRC)/sys
15DIR_INC                         = $(DIR_C)/include
16DIR_LDSCRIPT                    = $(DIR_SOFT)/Global/ldscript/
17
18INCLUDE                         = -I$(DIR_INC)
19LIBRARY                         = 
20
21#-----[ Files ]-------------------------------------------------------------------
22OBJECTS                         =       $(patsubst $(DIR_ASM)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_ASM)/*.s))    \
23                                        $(patsubst $(DIR_SYS)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_SYS)/*.s))    \
24                                        $(patsubst $(DIR_C)/%.c,$(DIR_OBJ)/%.o,$(wildcard $(DIR_C)/*.c))
25
26include                         $(DIR_SOFT)/Makefile.Software
27
Note: See TracBrowser for help on using the repository browser.