2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* mpc6xx/wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
This commit is contained in:
Ralf Corsepius
2002-08-11 07:18:31 +00:00
parent 73af0d932a
commit 4eb22aac46
3 changed files with 12 additions and 7 deletions

View File

@@ -1,3 +1,8 @@
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* mpc6xx/wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
* wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* mpc505/ictrl/Makefile.am: Use .$(OBJEXT) instead of .o.

View File

@@ -9,8 +9,8 @@ GENERIC_FILES =
# bummer; have to use $foreach since % pattern subst rules only replace 1x
OBJS = \
$(foreach piece, $(PROC_SPECIFIC_O_FILES), ../../mpc6xx/$(piece)/$(ARCH)/*.o) \
$(foreach piece, $(GENERIC_FILES), ../../mpc6xx/$(piece)/$(ARCH)/*.o)
$(foreach piece, $(PROC_SPECIFIC_O_FILES), ../../mpc6xx/$(piece)/$(ARCH)/*.$(OBJEXT)) \
$(foreach piece, $(GENERIC_FILES), ../../mpc6xx/$(piece)/$(ARCH)/*.$(OBJEXT))
LIB = $(ARCH)/libcpuspec.a
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg

View File

@@ -7,12 +7,12 @@ GENERIC_FILES = shared
# Use two variables so that I can make two ar command.
# So far FAMILY_OBJS is empty and ar dislike it...
CPU_SPECIFIC_OBJS = $(wildcard ../$(RTEMS_CPU_MODEL)/*/$(ARCH)/*.o)
CPU_SPECIFIC_OBJS = $(wildcard ../$(RTEMS_CPU_MODEL)/*/$(ARCH)/*.$(OBJEXT))
FAMILY_OBJS = \
$(wildcard ../shared/$(ARCH)/*.o ../shared/*/$(ARCH)/*.o \
../old_exception_processing/*/$(ARCH)/*.o \
../new_exception_processing/*/$(ARCH)/*.o \
../mpc6xx/*/$(ARCH)/*.o)
$(wildcard ../shared/$(ARCH)/*.$(OBJEXT) ../shared/*/$(ARCH)/*.$(OBJEXT) \
../old_exception_processing/*/$(ARCH)/*.$(OBJEXT) \
../new_exception_processing/*/$(ARCH)/*.$(OBJEXT) \
../mpc6xx/*/$(ARCH)/*.$(OBJEXT))
LIB = $(ARCH)/libcpu.a