Last change
on this file since 84 was
81,
checked in by rosiere, 17 years ago
|
- Finish Environment (and test)
- Continue predictor_unit
- Add external tools
- svn keyword "Id" set
|
-
Property svn:keywords set to
Id
|
File size:
738 bytes
|
Rev | Line | |
---|
[2] | 1 | # common definition |
---|
[78] | 2 | DIRECTORY_SRC = ./src |
---|
| 3 | DIRECTORY_C = $(DIRECTORY_SRC)/c |
---|
| 4 | DIRECTORY_ASM = $(DIRECTORY_SRC)/asm |
---|
| 5 | DIRECTORY_SYS = $(DIRECTORY_SRC)/sys |
---|
| 6 | DIRECTORY_INCLUDE = $(DIRECTORY_C)/include |
---|
| 7 | DIRECTORY_LDSCRIPT = $(DIRECTORY_SRC)/ldscript/ |
---|
[2] | 8 | |
---|
[78] | 9 | INCLUDE = -I$(DIRECTORY_INCLUDE) |
---|
| 10 | LIBRARY = |
---|
[2] | 11 | |
---|
| 12 | #-----[ Files ]------------------------------------------------------------------- |
---|
[78] | 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)) |
---|
[2] | 16 | |
---|
[78] | 17 | include ../Makefile.Software |
---|
[2] | 18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.