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

* clock/Makefile.am: Eliminate *_O_FILES.
	Don't include @RTEMS_BSP@.cfg.
	* timer/Makefile.am: Ditto.
This commit is contained in:
Ralf Corsepius
2003-01-15 18:29:44 +00:00
parent 9abd9c8416
commit d8b3f14827
3 changed files with 9 additions and 9 deletions

View File

@@ -1,3 +1,9 @@
2003-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* clock/Makefile.am: Eliminate *_O_FILES.
Don't include @RTEMS_BSP@.cfg.
* timer/Makefile.am: Ditto.
2002-12-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove RTEMS_CHECK_BSP_CACHE.

View File

@@ -6,16 +6,13 @@
PGM = $(ARCH)/clock.rel
C_FILES = ckinit.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
noinst_HEADERS = clock.h
S_FILES = clock.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

View File

@@ -8,11 +8,8 @@ PGM = $(ARCH)/timer.rel
# NOTE: timerisr is normally an assembly file!!!
C_FILES = timer.c timerisr.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