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

* m68040/fpsp/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* mcf5206/clock/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* mcf5206/console/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* mcf5206/mbus/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* mcf5206/timer/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* shared/cache/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* shared/misc/Makefile.am: Use .$(OBJEXT) instead of .o.
This commit is contained in:
Ralf Corsepius
2002-08-11 05:39:18 +00:00
parent 99df18ae62
commit ee6471146d
8 changed files with 19 additions and 9 deletions

View File

@@ -1,3 +1,13 @@
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* m68040/fpsp/Makefile.am: Use .$(OBJEXT) instead of .o.
* mcf5206/clock/Makefile.am: Use .$(OBJEXT) instead of .o.
* mcf5206/console/Makefile.am: Use .$(OBJEXT) instead of .o.
* mcf5206/mbus/Makefile.am: Use .$(OBJEXT) instead of .o.
* mcf5206/timer/Makefile.am: Use .$(OBJEXT) instead of .o.
* shared/cache/Makefile.am: Use .$(OBJEXT) instead of .o.
* shared/misc/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-08-06 Joel Sherrill <joel@OARcorp.com>
* configure.ac: Be more specific about looking at CPU32 and CPU32+

View File

@@ -10,7 +10,7 @@ include $(top_srcdir)/../../../../../automake/compile.am
include $(top_srcdir)/../../../../../automake/lib.am
C_FILES = rtems_fpsp.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
noinst_HEADERS = fpsp.defs
@@ -20,7 +20,7 @@ S_FILES = bindec.S binstr.S bugfix.S decbin.S do_func.S gen_except.S \
smovecr.S srem_mod.S ssin.S ssinh.S stan.S stanh.S sto_res.S stwotox.S \
tbldo.S util.S x_bsun.S x_fline.S x_operr.S x_ovfl.S x_snan.S x_store.S \
x_unfl.S x_unimp.S x_unsupp.S
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES) $(S_O_FILES)

View File

@@ -6,7 +6,7 @@
PGM = $(ARCH)/clock.rel
C_FILES = ckinit.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)

View File

@@ -6,7 +6,7 @@
PGM = $(ARCH)/console.rel
C_FILES = mcfuart.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)

View File

@@ -6,7 +6,7 @@
PGM = $(ARCH)/mbus.rel
C_FILES = mcfmbus.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)

View File

@@ -6,9 +6,9 @@
PGM = $(ARCH)/timer.rel
C_FILES = timer.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
S_FILES = timerisr.S
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES) $(S_O_FILES)

View File

@@ -6,7 +6,7 @@
VPATH = @srcdir@:@srcdir@/../../../shared/src
C_FILES = cache.c cache_aligned_malloc.c cache_manager.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include_libcpudir = $(includedir)/libcpu

View File

@@ -4,7 +4,7 @@
C_FILES = memcpy.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)