2003-12-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* startup/Makefile.am: start.S instead of start.s.
This commit is contained in:
Ralf Corsepius
2003-12-29 13:22:18 +00:00
parent d9ef059e5c
commit b5d1a57578
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2003-12-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* startup/Makefile.am: start.S instead of start.s.
2003-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2003-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 545/bsps PR 545/bsps

View File

@@ -11,8 +11,8 @@ C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c imbx8xx.c \
main.c mmutlbtab.c sbrk.c gnatinstallhandler.c main.c mmutlbtab.c sbrk.c gnatinstallhandler.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
S_FILES = start.s S_FILES = start.S
S_O_FILES = $(S_FILES:%.s=$(ARCH)/%.$(OBJEXT)) S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES) $(S_O_FILES) OBJS = $(C_O_FILES) $(S_O_FILES)