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

* cache/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* reg_win/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* syscall/Makefile.am: Use .$(OBJEXT) instead of .o.
This commit is contained in:
Ralf Corsepius
2002-08-11 05:23:26 +00:00
parent fef95c563b
commit ca9c287439
4 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* cache/Makefile.am: Use .$(OBJEXT) instead of .o.
* reg_win/Makefile.am: Use .$(OBJEXT) instead of .o.
* syscall/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-03-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* tbr/Makefile.am: Remove.

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

@@ -6,7 +6,7 @@
PGM = $(ARCH)/reg_win.rel
S_FILES = window.S
reg_win_rel_OBJECTS = $(S_FILES:%.S=$(ARCH)/%.o)
reg_win_rel_OBJECTS = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../automake/compile.am

View File

@@ -10,7 +10,7 @@ S_FILES = syscall.S
noinst_HEADERS = syscall.h
syscall_rel_OBJECTS = $(S_FILES:%.S=$(ARCH)/%.o)
syscall_rel_OBJECTS = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../automake/compile.am