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

* clock/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* milli/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* semaphore/Makefile.am: Use .$(OBJEXT) instead of .o.
 	* timer/Makefile.am: Use .$(OBJEXT) instead of .o.
This commit is contained in:
Ralf Corsepius
2002-08-11 05:38:52 +00:00
parent 5cb12c9138
commit 99df18ae62
5 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,10 @@
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* clock/Makefile.am: Use .$(OBJEXT) instead of .o.
* milli/Makefile.am: Use .$(OBJEXT) instead of .o.
* semaphore/Makefile.am: Use .$(OBJEXT) instead of .o.
* timer/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac:

View File

@@ -7,7 +7,7 @@ PGM = $(ARCH)/clock.rel
C_FILES = clock.c
clock_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o)
clock_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../automake/compile.am

View File

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

View File

@@ -7,7 +7,7 @@ PGM = $(ARCH)/semaphore.rel
C_FILES = semaphore.c
semaphore_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o)
semaphore_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../automake/compile.am

View File

@@ -7,7 +7,7 @@ PGM = $(ARCH)/timer.rel
C_FILES = timer.c
timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o)
timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../automake/compile.am