Changeset ec8c1949 in rtems
- Timestamp:
- 01/11/04 02:37:03 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4055a9c0
- Parents:
- 35d9b418
- Location:
- cpukit/score/cpu
- Files:
-
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/arm/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/arm/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS = asm.h … … 15 14 rtems/score/arm.h rtems/score/types.h 16 15 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c cpu_asm.S 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 22 25 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 31 27 32 28 PREINSTALL_FILES = -
cpukit/score/cpu/c4x/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/c4x/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS = asm.h c4xio.h … … 15 14 rtems/score/types.h rtems/score/cpu_asm.h 16 15 17 C_FILES = cpu.c irq.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c irq.c cpu_asm.S 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 22 25 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c irq.c cpu_asm.S 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 31 27 32 28 PREINSTALL_FILES = -
cpukit/score/cpu/h8300/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/h8300/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS = asm.h … … 15 14 rtems/score/types.h 16 15 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c cpu_asm.S 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 22 25 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 31 27 32 28 PREINSTALL_FILES = -
cpukit/score/cpu/i386/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/i386/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS= asm.h … … 16 15 rtems/score/idtr.h 17 16 18 LIB = $(ARCH)/libscorecpu.a 17 EXTRA_LIBRARIES = libscorecpu.a 18 CLEANFILES = libscorecpu.a 19 libscorecpu_a_SOURCES = cpu.c cpu_asm.S 20 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 21 20 C_FILES = cpu.c 21 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 22 EXTRA_LIBRARIES += libscorecpu_g.a 23 CLEANFILES += libscorecpu_g.a 24 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 25 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 22 26 23 S_FILES = cpu_asm.S 24 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 25 26 $(LIB): $(OBJS) 27 $(make-library) 28 29 all-local: $(PREINSTALL_FILES) $(LIB) 30 31 EXTRA_DIST = cpu.c cpu_asm.S 27 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 32 28 33 29 PREINSTALL_FILES = -
cpukit/score/cpu/i960/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/i960/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS = asm.h … … 15 14 rtems/score/types.h 16 15 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c cpu_asm.S 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 22 25 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S i960RP.h 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 31 27 32 28 PREINSTALL_FILES = -
cpukit/score/cpu/m68k/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2004-01-07 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/score/cpu/m68k/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/ compile.am8 include $(top_srcdir)/../../../automake/amcompile.am 9 9 include $(top_srcdir)/../../../automake/lib.am 10 10 … … 15 15 rtems/score/types.h 16 16 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 17 EXTRA_LIBRARIES = libscorecpu.a 18 CLEANFILES = libscorecpu.a 19 libscorecpu_a_SOURCES = cpu.c cpu_asm.S 20 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 21 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 22 EXTRA_LIBRARIES += libscorecpu_g.a 23 CLEANFILES += libscorecpu_g.a 24 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 25 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 22 26 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 27 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 31 28 32 29 PREINSTALL_FILES = -
cpukit/score/cpu/mips/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2004-01-07 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/score/cpu/mips/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS = asm.h idtcpu.h iregdef.h … … 15 14 rtems/score/types.h 16 15 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c cpu_asm.S 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 22 25 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 31 27 32 28 PREINSTALL_FILES = -
cpukit/score/cpu/no_cpu/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/no_cpu/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS = asm.h … … 15 14 rtems/score/cpu_asm.h rtems/score/types.h 16 15 17 C_FILES = cpu.c cpu_asm.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c cpu_asm.c 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 LIB = $(ARCH)/libscorecpu.a 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 21 25 22 $(LIB): $(OBJS) 23 $(make-library) 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 24 27 25 all-local: $(PREINSTALL_FILES) $(LIB)26 27 EXTRA_DIST = cpu.c cpu_asm.c28 28 29 29 PREINSTALL_FILES = -
cpukit/score/cpu/or32/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/or32/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS= asm.h … … 15 14 rtems/score/or32.h rtems/score/cpu_asm.h 16 15 17 C_FILES = cpu.c cpu_asm.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c cpu_asm.c 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 LIB = $(ARCH)/libscorecpu.a 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 21 25 22 $(LIB): $(OBJS) 23 $(make-library) 24 25 all-local: $(PREINSTALL_FILES) $(LIB) 26 27 EXTRA_DIST = cpu.c cpu_asm.c 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 28 27 29 28 PREINSTALL_FILES = -
cpukit/score/cpu/powerpc/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/powerpc/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS = asm.h -
cpukit/score/cpu/sh/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/sh/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS= asm.h … … 15 14 rtems/score/sh.h rtems/score/sh_io.h 16 15 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 LIB = $(ARCH)/libscorecpu.a 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 21 25 22 $(LIB): $(OBJS) 23 $(make-library) 24 25 all-local: $(PREINSTALL_FILES) $(LIB) 26 27 EXTRA_DIST = cpu.c 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 28 27 29 28 PREINSTALL_FILES = -
cpukit/score/cpu/sparc/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/sparc/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 include_HEADERS= asm.h … … 15 14 rtems/score/types.h 16 15 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c cpu_asm.S 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 S_FILES = cpu_asm.S 21 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 22 25 23 LIB = $(ARCH)/libscorecpu.a 24 25 $(LIB): $(OBJS) 26 $(make-library) 27 28 all-local: $(PREINSTALL_FILES) $(LIB) 29 30 EXTRA_DIST = cpu.c cpu_asm.S 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 31 27 32 28 PREINSTALL_FILES = -
cpukit/score/cpu/unix/ChangeLog
r35d9b418 rec8c1949 1 2004-01-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Convert to using automake compilation rules. 4 1 5 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 -
cpukit/score/cpu/unix/Makefile.am
r35d9b418 rec8c1949 6 6 7 7 include $(top_srcdir)/../../../automake/multilib.am 8 include $(top_srcdir)/../../../automake/compile.am 9 include $(top_srcdir)/../../../automake/lib.am 8 include $(top_srcdir)/../../../automake/amcompile.am 10 9 11 10 AM_CPPFLAGS += -DCPU_SYNC_IO $(LIBC_DEFINES) … … 15 14 rtems/score/unix.h rtems/score/unixsize.h 16 15 17 C_FILES = cpu.c 18 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 EXTRA_LIBRARIES = libscorecpu.a 17 CLEANFILES = libscorecpu.a 18 libscorecpu_a_SOURCES = cpu.c 19 libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V) 19 20 20 LIB = $(ARCH)/libscorecpu.a 21 EXTRA_LIBRARIES += libscorecpu_g.a 22 CLEANFILES += libscorecpu_g.a 23 libscorecpu_g_a_SOURCES = $(libscorecpu_a_SOURCES) 24 libscorecpu_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V) 21 25 22 $(LIB): $(OBJS) 23 $(make-library) 24 25 all-local: $(PREINSTALL_FILES) $(LIB) 26 27 EXTRA_DIST = cpu.c 26 all-local: $(PREINSTALL_FILES) libscorecpu$(LIB_VARIANT).a 28 27 29 28 PREINSTALL_FILES =
Note: See TracChangeset
for help on using the changeset viewer.