2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* src/Makefile.am: Use .$(OBJEXT) instead of .o.
This commit is contained in:
Ralf Corsepius
2002-07-22 13:57:35 +00:00
parent 83864ea2a6
commit 38ae496ee8
4 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-07-05 Joel Sherrill <joel@OARcorp.com>
* src/dpmemident.c, src/msgqident.c, src/partident.c,

View File

@@ -62,7 +62,7 @@ else
C_FILES = $(STD_C_FILES)
endif
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
OBJS = $(C_O_FILES)

View File

@@ -1,3 +1,7 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-07-16 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/object.inl: Corrected typos in

View File

@@ -62,7 +62,7 @@ C_FILES = $(STD_C_FILES) $(MP_C_FILES)
else
C_FILES = $(STD_C_FILES)
endif
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
OBJS = $(C_O_FILES)