summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/or16
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/or16')
-rw-r--r--cpukit/score/cpu/or16/ChangeLog4
-rw-r--r--cpukit/score/cpu/or16/Makefile.am12
2 files changed, 9 insertions, 7 deletions
diff --git a/cpukit/score/cpu/or16/ChangeLog b/cpukit/score/cpu/or16/ChangeLog
index b61c8c6717..56adaa50c2 100644
--- a/cpukit/score/cpu/or16/ChangeLog
+++ b/cpukit/score/cpu/or16/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * Makefile.am: Build libscorecpu.a instead of rtems-cpu.rel.
+
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use .$(OBJEXT) instead of .o.
diff --git a/cpukit/score/cpu/or16/Makefile.am b/cpukit/score/cpu/or16/Makefile.am
index f3d2f0decd..34a69b1a57 100644
--- a/cpukit/score/cpu/or16/Makefile.am
+++ b/cpukit/score/cpu/or16/Makefile.am
@@ -35,18 +35,16 @@ PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
C_FILES = cpu.c cpu_asm.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
-REL = $(ARCH)/rtems-cpu.rel
+LIB = $(ARCH)/libscorecpu.a
-rtems_cpu_rel_OBJECTS = $(C_O_FILES)
+libscorecpu_a_OBJECTS = $(C_O_FILES)
-$(REL): $(rtems_cpu_rel_OBJECTS)
- $(make-rel)
+$(LIB): $(libscorecpu_a_OBJECTS)
+ $(make-library)
-all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
+all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) \
$(TMPINSTALL_FILES)
-.PRECIOUS: $(REL)
-
EXTRA_DIST = cpu.c cpu_asm.c
include $(top_srcdir)/../../../automake/local.am