summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/sh/sh7045
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libcpu/sh/sh7045/ChangeLog7
-rw-r--r--c/src/lib/libcpu/sh/sh7045/clock/Makefile.am2
-rw-r--r--c/src/lib/libcpu/sh/sh7045/sci/Makefile.am2
-rw-r--r--c/src/lib/libcpu/sh/sh7045/score/Makefile.am2
-rw-r--r--c/src/lib/libcpu/sh/sh7045/timer/Makefile.am2
5 files changed, 11 insertions, 4 deletions
diff --git a/c/src/lib/libcpu/sh/sh7045/ChangeLog b/c/src/lib/libcpu/sh/sh7045/ChangeLog
index 5b1e6c0cef..5f216755c9 100644
--- a/c/src/lib/libcpu/sh/sh7045/ChangeLog
+++ b/c/src/lib/libcpu/sh/sh7045/ChangeLog
@@ -1,3 +1,10 @@
+2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
+ * sci/Makefile.am: Use .$(OBJEXT) instead of .o.
+ * score/Makefile.am: Use .$(OBJEXT) instead of .o.
+ * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
+
2001-04-03 Joel Sherrill <joel@OARcorp.com>
* Per PR94, all rtems/score/CPUtypes.h are named rtems/score/types.h.
diff --git a/c/src/lib/libcpu/sh/sh7045/clock/Makefile.am b/c/src/lib/libcpu/sh/sh7045/clock/Makefile.am
index b8bbf2f9a0..9f0c6595bb 100644
--- a/c/src/lib/libcpu/sh/sh7045/clock/Makefile.am
+++ b/c/src/lib/libcpu/sh/sh7045/clock/Makefile.am
@@ -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)
diff --git a/c/src/lib/libcpu/sh/sh7045/sci/Makefile.am b/c/src/lib/libcpu/sh/sh7045/sci/Makefile.am
index ce809f2548..3c4431ba2b 100644
--- a/c/src/lib/libcpu/sh/sh7045/sci/Makefile.am
+++ b/c/src/lib/libcpu/sh/sh7045/sci/Makefile.am
@@ -6,7 +6,7 @@
PGM = $(ARCH)/sci.rel
C_FILES = sci.c sci_termios.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/c/src/lib/libcpu/sh/sh7045/score/Makefile.am b/c/src/lib/libcpu/sh/sh7045/score/Makefile.am
index 637ced6b2d..7ec90a5bf7 100644
--- a/c/src/lib/libcpu/sh/sh7045/score/Makefile.am
+++ b/c/src/lib/libcpu/sh/sh7045/score/Makefile.am
@@ -6,7 +6,7 @@
PGM = $(ARCH)/score.rel
C_FILES = cpu_asm.c ispsh7045.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
diff --git a/c/src/lib/libcpu/sh/sh7045/timer/Makefile.am b/c/src/lib/libcpu/sh/sh7045/timer/Makefile.am
index f43f674621..1eb63d1c83 100644
--- a/c/src/lib/libcpu/sh/sh7045/timer/Makefile.am
+++ b/c/src/lib/libcpu/sh/sh7045/timer/Makefile.am
@@ -6,7 +6,7 @@
PGM = $(ARCH)/timer.rel
C_FILES = timer.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
+C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)