source: trunk/Softwares/Test/Test_053/Makefile

Last change on this file was 102, checked in by rosiere, 18 years ago

Previous commit with new files :P

  • Property svn:keywords set to Id
File size: 684 bytes
Line 
1#
2# $Id: Makefile 102 2009-01-15 17:24:46Z 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_SRC)/include
16DIR_LDSCRIPT = $(DIR_SOFT)/Common/ldscript/
17
18INCDIR = -I$(DIR_INC)
19LIBDIR =
20LIBNAME =
21
22#-----[ Files ]-------------------------------------------------------------------
23OBJECTS = $(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
27include $(DIR_SOFT)/Makefile.Software
28
Note: See TracBrowser for help on using the repository browser.