2003-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* clock/Makefile.am: Eliminate *_O_FILES.
	Don't include @RTEMS_BSP@.cfg.
	* console/Makefile.am: Likewise.
	* mbus/Makefile.am: Likewise.
	* timer/Makefile.am: Likewise.
This commit is contained in:
Ralf Corsepius
2003-01-15 18:07:19 +00:00
parent ce9c79fd9c
commit 7c53080d03
5 changed files with 13 additions and 18 deletions
+8
View File
@@ -1,3 +1,11 @@
2003-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* clock/Makefile.am: Eliminate *_O_FILES.
Don't include @RTEMS_BSP@.cfg.
* console/Makefile.am: Likewise.
* mbus/Makefile.am: Likewise.
* timer/Makefile.am: Likewise.
2003-01-03 Victor V. Vengerov <vvv@oktet.ru>
* mbus/mcfmbus.c: Per PR323, move the mbus_send command on line 232
@@ -6,11 +6,8 @@
PGM = $(ARCH)/clock.rel
C_FILES = ckinit.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../../automake/compile.am
include $(top_srcdir)/../../../../../../automake/lib.am
@@ -6,11 +6,8 @@
PGM = $(ARCH)/console.rel
C_FILES = mcfuart.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../../automake/compile.am
include $(top_srcdir)/../../../../../../automake/lib.am
@@ -2,15 +2,11 @@
## $Id$
##
PGM = $(ARCH)/mbus.rel
C_FILES = mcfmbus.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../../automake/compile.am
include $(top_srcdir)/../../../../../../automake/lib.am
@@ -6,13 +6,10 @@
PGM = $(ARCH)/timer.rel
C_FILES = timer.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
S_FILES = timerisr.S
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES) $(S_O_FILES)
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../../automake/compile.am
include $(top_srcdir)/../../../../../../automake/lib.am