Changeset 88 for trunk/Softwares/Min
- Timestamp:
- Dec 10, 2008, 7:31:39 PM (16 years ago)
- Location:
- trunk/Softwares/Min
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Softwares/Min/Makefile
r81 r88 1 # 2 # $Id$ 3 # 4 # [ Description ] 5 # 6 # Makefile 7 # 8 1 9 # common definition 2 DIR ECTORY_SRC= ./src3 DIR ECTORY_C = $(DIRECTORY_SRC)/c4 DIR ECTORY_ASM = $(DIRECTORY_SRC)/asm5 DIR ECTORY_SYS = $(DIRECTORY_SRC)/sys6 DIR ECTORY_INCLUDE = $(DIRECTORY_C)/include7 DIR ECTORY_LDSCRIPT = $(DIRECTORY_SRC)/ldscript/10 DIR_SRC = ./src 11 DIR_C = $(DIR_SRC)/c 12 DIR_ASM = $(DIR_SRC)/asm 13 DIR_SYS = $(DIR_SRC)/sys 14 DIR_INC = $(DIR_C)/include 15 DIR_LDSCRIPT = ../Global/ldscript/ 8 16 9 INCLUDE = -I$(DIR ECTORY_INCLUDE)17 INCLUDE = -I$(DIR_INC) 10 18 LIBRARY = 11 19 12 20 #-----[ Files ]------------------------------------------------------------------- 13 OBJECTS _ASM = $(patsubst $(DIRECTORY_ASM)/%.s,$(DIRECTORY_OBJ)/%.o,$(wildcard $(DIRECTORY_ASM)/*.s))14 OBJECTS_SYS = $(patsubst $(DIRECTORY_SYS)/%.s,$(DIRECTORY_OBJ)/%.o,$(wildcard $(DIRECTORY_SYS)/*.s)) 15 OBJECTS_C = $(patsubst $(DIRECTORY_C)/%.c,$(DIRECTORY_OBJ)/%.o,$(wildcard $(DIRECTORY_C)/*.c))21 OBJECTS = $(patsubst $(DIR_ASM)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_ASM)/*.s)) \ 22 $(patsubst $(DIR_SYS)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_SYS)/*.s)) \ 23 $(patsubst $(DIR_C)/%.c,$(DIR_OBJ)/%.o,$(wildcard $(DIR_C)/*.c)) 16 24 17 25 include ../Makefile.Software
Note: See TracChangeset
for help on using the changeset viewer.