forked from Imagelibrary/rtems
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* clock/Makefile.am: Use .$(OBJEXT) instead of .o. * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* clock/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>
|
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|||||||
@@ -6,12 +6,12 @@
|
|||||||
PGM = $(ARCH)/clock.rel
|
PGM = $(ARCH)/clock.rel
|
||||||
|
|
||||||
C_FILES = ckinit.c
|
C_FILES = ckinit.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
||||||
|
|
||||||
noinst_HEADERS = clock.h
|
noinst_HEADERS = clock.h
|
||||||
|
|
||||||
S_FILES = clock.S
|
S_FILES = clock.S
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
|
||||||
|
|
||||||
OBJS = $(C_O_FILES) $(S_O_FILES)
|
OBJS = $(C_O_FILES) $(S_O_FILES)
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ PGM = $(ARCH)/timer.rel
|
|||||||
# NOTE: timerisr is normally an assembly file!!!
|
# NOTE: timerisr is normally an assembly file!!!
|
||||||
|
|
||||||
C_FILES = timer.c timerisr.c
|
C_FILES = timer.c timerisr.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
||||||
|
|
||||||
OBJS = $(C_O_FILES)
|
OBJS = $(C_O_FILES)
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* clock/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>
|
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ S_FILES = clock.S
|
|||||||
|
|
||||||
noinst_HEADERS = clock.h
|
noinst_HEADERS = clock.h
|
||||||
|
|
||||||
clock_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o) $(S_FILES:%.S=$(ARCH)/%.o)
|
clock_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../../../../../automake/compile.am
|
include $(top_srcdir)/../../../../../automake/compile.am
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ C_FILES = timer.c
|
|||||||
|
|
||||||
S_FILES = gettime.S
|
S_FILES = gettime.S
|
||||||
|
|
||||||
timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o) $(S_FILES:%.S=$(ARCH)/%.o)
|
timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
include $(top_srcdir)/../../../../../automake/compile.am
|
include $(top_srcdir)/../../../../../automake/compile.am
|
||||||
|
|||||||
Reference in New Issue
Block a user