forked from Imagelibrary/rtems
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* rtems/Makefile.am: Removed. * rtems/score/Makefile.am: Removed. * configure.ac: Reflect changes above. * Makefile.am: Reflect changes above.
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* rtems/Makefile.am: Removed.
|
||||||
|
* rtems/score/Makefile.am: Removed.
|
||||||
|
* configure.ac: Reflect changes above.
|
||||||
|
* Makefile.am: Reflect changes above.
|
||||||
|
|
||||||
2001-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2001-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Add multilib support.
|
* Makefile.am: Add multilib support.
|
||||||
|
|||||||
@@ -2,35 +2,46 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.5
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
|
||||||
|
|
||||||
C_FILES = cpu.c
|
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
|
||||||
|
|
||||||
include_HEADERS = amd.ah asm.h pswmacro.ah register.ah
|
|
||||||
|
|
||||||
S_FILES = cpu_asm.S sig.S
|
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/multilib.am
|
include $(top_srcdir)/../../../../../../automake/multilib.am
|
||||||
include $(top_srcdir)/../../../../../../automake/compile.am
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../../../../automake/lib.am
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
||||||
|
|
||||||
$(PROJECT_INCLUDE):
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.ah: %.ah
|
$(PROJECT_INCLUDE):
|
||||||
$(INSTALL_DATA) $< $@
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
include_HEADERS = amd.ah asm.h pswmacro.ah register.ah
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
||||||
|
|
||||||
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/a29k.h \
|
||||||
|
rtems/score/a29ktypes.h \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/cpu_asm.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
C_FILES = cpu.c
|
||||||
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
|
S_FILES = cpu_asm.S sig.S
|
||||||
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
||||||
|
|
||||||
REL = $(ARCH)/rtems-cpu.rel
|
REL = $(ARCH)/rtems-cpu.rel
|
||||||
|
|
||||||
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
||||||
@@ -38,8 +49,6 @@ rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
|||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
||||||
@@ -49,5 +58,4 @@ all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
|||||||
|
|
||||||
EXTRA_DIST = cpu.c cpu_asm.S rtems.c sig.S
|
EXTRA_DIST = cpu.c cpu_asm.S rtems.c sig.S
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
include $(top_srcdir)/../../../../../../automake/local.am
|
||||||
|
|||||||
@@ -26,7 +26,5 @@ RTEMS_CANONICALIZE_TOOLS
|
|||||||
RTEMS_CHECK_NEWLIB
|
RTEMS_CHECK_NEWLIB
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile])
|
||||||
rtems/Makefile
|
|
||||||
rtems/score/Makefile])
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
|
||||||
|
|
||||||
SUBDIRS = score
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
|
||||||
|
|
||||||
include_rtems_scoredir = $(includedir)/rtems/score
|
|
||||||
|
|
||||||
include_rtems_score_HEADERS = a29k.h a29ktypes.h cpu.h cpu_asm.h
|
|
||||||
|
|
||||||
#
|
|
||||||
# (OPTIONAL) Add local stuff here using +=
|
|
||||||
#
|
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \
|
|
||||||
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h)
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/rtems/score:
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/rtems/score/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
all-local: $(PREINSTALL_FILES)
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
|
||||||
@@ -1,3 +1,10 @@
|
|||||||
|
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* rtems/Makefile.am: Removed.
|
||||||
|
* rtems/score/Makefile.am: Removed.
|
||||||
|
* configure.ac: Reflect changes above.
|
||||||
|
* Makefile.am: Reflect changes above.
|
||||||
|
|
||||||
2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
|
* configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
|
||||||
|
|||||||
@@ -2,10 +2,38 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.5
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
include $(top_srcdir)/../../../../../../automake/multilib.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE):
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
include_HEADERS = asm.h
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
||||||
|
|
||||||
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/arm.h \
|
||||||
|
rtems/score/armtypes.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
C_FILES = cpu.c
|
C_FILES = cpu.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
@@ -13,30 +41,13 @@ C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
|||||||
S_FILES = cpu_asm.S
|
S_FILES = cpu_asm.S
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
||||||
|
|
||||||
include_HEADERS = asm.h
|
|
||||||
|
|
||||||
REL = $(ARCH)/rtems-cpu.rel
|
REL = $(ARCH)/rtems-cpu.rel
|
||||||
|
|
||||||
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/multilib.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/compile.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/lib.am
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE):
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
all: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
all: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
||||||
@@ -46,5 +57,4 @@ all: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
|||||||
|
|
||||||
EXTRA_DIST = cpu.c cpu_asm.S
|
EXTRA_DIST = cpu.c cpu_asm.S
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
include $(top_srcdir)/../../../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
|
||||||
|
|
||||||
SUBDIRS = score
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
|
||||||
|
|
||||||
include_rtems_scoredir = $(includedir)/rtems/score
|
|
||||||
include_rtems_score_HEADERS = cpu.h arm.h armtypes.h
|
|
||||||
|
|
||||||
#
|
|
||||||
# (OPTIONAL) Add local stuff here using +=
|
|
||||||
#
|
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \
|
|
||||||
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h)
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/rtems/score:
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/rtems/score/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
all: $(PREINSTALL_FILES)
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
|
||||||
@@ -1,3 +1,10 @@
|
|||||||
|
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* rtems/Makefile.am: Removed.
|
||||||
|
* rtems/score/Makefile.am: Removed.
|
||||||
|
* configure.ac: Reflect changes above.
|
||||||
|
* Makefile.am: Reflect changes above.
|
||||||
|
|
||||||
2002-02-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-02-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* asm.h: Remove #include <rtems/score/targopts.h>.
|
* asm.h: Remove #include <rtems/score/targopts.h>.
|
||||||
|
|||||||
@@ -2,41 +2,53 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.5
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
include $(top_srcdir)/../../../../../../automake/multilib.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE):
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
include_HEADERS = asm.h c4xio.h
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
||||||
|
|
||||||
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/c4x.h \
|
||||||
|
rtems/score/c4xtypes.h \
|
||||||
|
rtems/score/cpu_asm.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
C_FILES = cpu.c irq.c
|
C_FILES = cpu.c irq.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
include_HEADERS = asm.h c4xio.h
|
|
||||||
|
|
||||||
S_FILES = cpu_asm.S
|
S_FILES = cpu_asm.S
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
||||||
|
|
||||||
REL = $(ARCH)/rtems-cpu.rel
|
REL = $(ARCH)/rtems-cpu.rel
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/multilib.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/compile.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/lib.am
|
|
||||||
|
|
||||||
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
||||||
|
|
||||||
$(PROJECT_INCLUDE):
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
||||||
@@ -46,5 +58,4 @@ all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
|||||||
|
|
||||||
EXTRA_DIST = cpu.c irq.c cpu_asm.S rtems.c
|
EXTRA_DIST = cpu.c irq.c cpu_asm.S rtems.c
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
include $(top_srcdir)/../../../../../../automake/local.am
|
||||||
|
|||||||
@@ -26,7 +26,5 @@ RTEMS_CANONICALIZE_TOOLS
|
|||||||
RTEMS_CHECK_NEWLIB
|
RTEMS_CHECK_NEWLIB
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile])
|
||||||
rtems/Makefile
|
|
||||||
rtems/score/Makefile])
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
|
||||||
|
|
||||||
SUBDIRS = score
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
|
||||||
|
|
||||||
include_rtems_scoredir = $(includedir)/rtems/score
|
|
||||||
include_rtems_score_HEADERS = cpu.h c4x.h c4xtypes.h cpu_asm.h
|
|
||||||
|
|
||||||
#
|
|
||||||
# (OPTIONAL) Add local stuff here using +=
|
|
||||||
#
|
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \
|
|
||||||
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h)
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/rtems/score:
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/rtems/score/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
all-local: $(PREINSTALL_FILES)
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
|
||||||
@@ -1,3 +1,10 @@
|
|||||||
|
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* rtems/Makefile.am: Removed.
|
||||||
|
* rtems/score/Makefile.am: Removed.
|
||||||
|
* configure.ac: Reflect changes above.
|
||||||
|
* Makefile.am: Reflect changes above.
|
||||||
|
|
||||||
2002-01-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-01-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* rtems/score/cpu.h: #include <rtems/bspIo.h>.
|
* rtems/score/cpu.h: #include <rtems/bspIo.h>.
|
||||||
|
|||||||
@@ -2,41 +2,52 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.5
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
include $(top_srcdir)/../../../../../../automake/multilib.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE):
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
include_HEADERS = asm.h
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
||||||
|
|
||||||
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/h8300.h \
|
||||||
|
rtems/score/h8300types.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
C_FILES = cpu.c rtems.c
|
C_FILES = cpu.c rtems.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
include_HEADERS = asm.h
|
|
||||||
|
|
||||||
S_FILES = cpu_asm.S
|
S_FILES = cpu_asm.S
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
||||||
|
|
||||||
REL = $(ARCH)/rtems-cpu.rel
|
REL = $(ARCH)/rtems-cpu.rel
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/multilib.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/compile.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/lib.am
|
|
||||||
|
|
||||||
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
||||||
|
|
||||||
$(PROJECT_INCLUDE):
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
||||||
@@ -46,5 +57,4 @@ all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
|||||||
|
|
||||||
EXTRA_DIST = cpu.c cpu_asm.S rtems.c
|
EXTRA_DIST = cpu.c cpu_asm.S rtems.c
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
include $(top_srcdir)/../../../../../../automake/local.am
|
||||||
|
|||||||
@@ -26,7 +26,5 @@ RTEMS_CANONICALIZE_TOOLS
|
|||||||
RTEMS_CHECK_NEWLIB
|
RTEMS_CHECK_NEWLIB
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile])
|
||||||
rtems/Makefile
|
|
||||||
rtems/score/Makefile])
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
|
||||||
|
|
||||||
SUBDIRS = score
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
##
|
|
||||||
## $Id$
|
|
||||||
##
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
|
||||||
|
|
||||||
include_rtems_scoredir = $(includedir)/rtems/score
|
|
||||||
include_rtems_score_HEADERS = cpu.h h8300.h h8300types.h
|
|
||||||
|
|
||||||
#
|
|
||||||
# (OPTIONAL) Add local stuff here using +=
|
|
||||||
#
|
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score \
|
|
||||||
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h)
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/rtems/score:
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/rtems/score/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
all-local: $(PREINSTALL_FILES)
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
|
||||||
@@ -1,3 +1,10 @@
|
|||||||
|
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* rtems/Makefile.am: Removed.
|
||||||
|
* rtems/score/Makefile.am: Removed.
|
||||||
|
* configure.ac: Reflect changes above.
|
||||||
|
* Makefile.am: Reflect changes above.
|
||||||
|
|
||||||
2001-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2001-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Add multilib support.
|
* Makefile.am: Add multilib support.
|
||||||
|
|||||||
@@ -2,35 +2,46 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.5
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
|
||||||
|
|
||||||
C_FILES = cpu.c
|
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
|
||||||
|
|
||||||
include_HEADERS = amd.ah asm.h pswmacro.ah register.ah
|
|
||||||
|
|
||||||
S_FILES = cpu_asm.S sig.S
|
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/multilib.am
|
include $(top_srcdir)/../../../../../../automake/multilib.am
|
||||||
include $(top_srcdir)/../../../../../../automake/compile.am
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../../../../automake/lib.am
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
||||||
|
|
||||||
$(PROJECT_INCLUDE):
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.ah: %.ah
|
$(PROJECT_INCLUDE):
|
||||||
$(INSTALL_DATA) $< $@
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
include_HEADERS = amd.ah asm.h pswmacro.ah register.ah
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
||||||
|
|
||||||
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/a29k.h \
|
||||||
|
rtems/score/a29ktypes.h \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/cpu_asm.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
C_FILES = cpu.c
|
||||||
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
|
S_FILES = cpu_asm.S sig.S
|
||||||
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
||||||
|
|
||||||
REL = $(ARCH)/rtems-cpu.rel
|
REL = $(ARCH)/rtems-cpu.rel
|
||||||
|
|
||||||
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
||||||
@@ -38,8 +49,6 @@ rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
|||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
||||||
@@ -49,5 +58,4 @@ all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
|||||||
|
|
||||||
EXTRA_DIST = cpu.c cpu_asm.S rtems.c sig.S
|
EXTRA_DIST = cpu.c cpu_asm.S rtems.c sig.S
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
include $(top_srcdir)/../../../../../../automake/local.am
|
||||||
|
|||||||
@@ -26,7 +26,5 @@ RTEMS_CANONICALIZE_TOOLS
|
|||||||
RTEMS_CHECK_NEWLIB
|
RTEMS_CHECK_NEWLIB
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile])
|
||||||
rtems/Makefile
|
|
||||||
rtems/score/Makefile])
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* rtems/Makefile.am: Removed.
|
||||||
|
* rtems/score/Makefile.am: Removed.
|
||||||
|
* configure.ac: Reflect changes above.
|
||||||
|
* Makefile.am: Reflect changes above.
|
||||||
|
|
||||||
2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
|
* configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
|
||||||
|
|||||||
@@ -2,10 +2,38 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.5
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
include $(top_srcdir)/../../../../../../automake/multilib.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE):
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
include_HEADERS = asm.h
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
||||||
|
|
||||||
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/arm.h \
|
||||||
|
rtems/score/armtypes.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
C_FILES = cpu.c
|
C_FILES = cpu.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
@@ -13,30 +41,13 @@ C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
|||||||
S_FILES = cpu_asm.S
|
S_FILES = cpu_asm.S
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
||||||
|
|
||||||
include_HEADERS = asm.h
|
|
||||||
|
|
||||||
REL = $(ARCH)/rtems-cpu.rel
|
REL = $(ARCH)/rtems-cpu.rel
|
||||||
|
|
||||||
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/multilib.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/compile.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/lib.am
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE):
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
all: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
all: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
||||||
@@ -46,5 +57,4 @@ all: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
|||||||
|
|
||||||
EXTRA_DIST = cpu.c cpu_asm.S
|
EXTRA_DIST = cpu.c cpu_asm.S
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
include $(top_srcdir)/../../../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* rtems/Makefile.am: Removed.
|
||||||
|
* rtems/score/Makefile.am: Removed.
|
||||||
|
* configure.ac: Reflect changes above.
|
||||||
|
* Makefile.am: Reflect changes above.
|
||||||
|
|
||||||
2002-02-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-02-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* asm.h: Remove #include <rtems/score/targopts.h>.
|
* asm.h: Remove #include <rtems/score/targopts.h>.
|
||||||
|
|||||||
@@ -2,41 +2,53 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.5
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
include $(top_srcdir)/../../../../../../automake/multilib.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE):
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
include_HEADERS = asm.h c4xio.h
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
||||||
|
|
||||||
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/c4x.h \
|
||||||
|
rtems/score/c4xtypes.h \
|
||||||
|
rtems/score/cpu_asm.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
C_FILES = cpu.c irq.c
|
C_FILES = cpu.c irq.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
include_HEADERS = asm.h c4xio.h
|
|
||||||
|
|
||||||
S_FILES = cpu_asm.S
|
S_FILES = cpu_asm.S
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
||||||
|
|
||||||
REL = $(ARCH)/rtems-cpu.rel
|
REL = $(ARCH)/rtems-cpu.rel
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/multilib.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/compile.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/lib.am
|
|
||||||
|
|
||||||
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
||||||
|
|
||||||
$(PROJECT_INCLUDE):
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
||||||
@@ -46,5 +58,4 @@ all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
|||||||
|
|
||||||
EXTRA_DIST = cpu.c irq.c cpu_asm.S rtems.c
|
EXTRA_DIST = cpu.c irq.c cpu_asm.S rtems.c
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
include $(top_srcdir)/../../../../../../automake/local.am
|
||||||
|
|||||||
@@ -26,7 +26,5 @@ RTEMS_CANONICALIZE_TOOLS
|
|||||||
RTEMS_CHECK_NEWLIB
|
RTEMS_CHECK_NEWLIB
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile])
|
||||||
rtems/Makefile
|
|
||||||
rtems/score/Makefile])
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* rtems/Makefile.am: Removed.
|
||||||
|
* rtems/score/Makefile.am: Removed.
|
||||||
|
* configure.ac: Reflect changes above.
|
||||||
|
* Makefile.am: Reflect changes above.
|
||||||
|
|
||||||
2002-01-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-01-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* rtems/score/cpu.h: #include <rtems/bspIo.h>.
|
* rtems/score/cpu.h: #include <rtems/bspIo.h>.
|
||||||
|
|||||||
@@ -2,41 +2,52 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.5
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
include $(top_srcdir)/../../../../../../automake/multilib.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
||||||
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE):
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
include_HEADERS = asm.h
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
||||||
|
|
||||||
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/h8300.h \
|
||||||
|
rtems/score/h8300types.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
C_FILES = cpu.c rtems.c
|
C_FILES = cpu.c rtems.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
include_HEADERS = asm.h
|
|
||||||
|
|
||||||
S_FILES = cpu_asm.S
|
S_FILES = cpu_asm.S
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
||||||
|
|
||||||
REL = $(ARCH)/rtems-cpu.rel
|
REL = $(ARCH)/rtems-cpu.rel
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/multilib.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/compile.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/lib.am
|
|
||||||
|
|
||||||
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
||||||
|
|
||||||
$(PROJECT_INCLUDE):
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
|
||||||
$(INSTALL_DATA) $< $@
|
|
||||||
|
|
||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
||||||
@@ -46,5 +57,4 @@ all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
|||||||
|
|
||||||
EXTRA_DIST = cpu.c cpu_asm.S rtems.c
|
EXTRA_DIST = cpu.c cpu_asm.S rtems.c
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
include $(top_srcdir)/../../../../../../automake/local.am
|
||||||
|
|||||||
@@ -26,7 +26,5 @@ RTEMS_CANONICALIZE_TOOLS
|
|||||||
RTEMS_CHECK_NEWLIB
|
RTEMS_CHECK_NEWLIB
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile])
|
||||||
rtems/Makefile
|
|
||||||
rtems/score/Makefile])
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
2002-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* rtems/Makefile.am: Removed.
|
||||||
|
* rtems/score/Makefile.am: Removed.
|
||||||
|
* configure.ac: Reflect changes above.
|
||||||
|
* Makefile.am: Reflect changes above.
|
||||||
|
|
||||||
2001-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2001-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Add multilib support.
|
* Makefile.am: Add multilib support.
|
||||||
|
|||||||
@@ -2,32 +2,45 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.5
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
|
||||||
|
|
||||||
C_FILES = cpu.c
|
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
|
||||||
|
|
||||||
include_HEADERS = asm.h cpu_asm.h idtcpu.h idtmon.h iregdef.h
|
|
||||||
|
|
||||||
S_FILES = cpu_asm.S
|
|
||||||
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/multilib.am
|
include $(top_srcdir)/../../../../../../automake/multilib.am
|
||||||
include $(top_srcdir)/../../../../../../automake/compile.am
|
include $(top_srcdir)/../../../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../../../../automake/lib.am
|
include $(top_srcdir)/../../../../../../automake/lib.am
|
||||||
|
|
||||||
$(PROJECT_INCLUDE):
|
|
||||||
$(mkinstalldirs) $@
|
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE):
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
include_HEADERS = asm.h cpu_asm.h idtcpu.h idtmon.h iregdef.h
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
||||||
|
|
||||||
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/mips64orion.h \
|
||||||
|
rtems/score/mipstypes.h
|
||||||
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
C_FILES = cpu.c
|
||||||
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
|
S_FILES = cpu_asm.S
|
||||||
|
S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
|
||||||
|
|
||||||
REL = $(ARCH)/rtems-cpu.rel
|
REL = $(ARCH)/rtems-cpu.rel
|
||||||
|
|
||||||
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
||||||
@@ -35,8 +48,6 @@ rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
|
|||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
||||||
@@ -46,5 +57,4 @@ all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
|
|||||||
|
|
||||||
EXTRA_DIST = cpu.c cpu_asm.S rtems.c
|
EXTRA_DIST = cpu.c cpu_asm.S rtems.c
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../../../automake/subdirs.am
|
|
||||||
include $(top_srcdir)/../../../../../../automake/local.am
|
include $(top_srcdir)/../../../../../../automake/local.am
|
||||||
|
|||||||
@@ -26,7 +26,5 @@ RTEMS_CANONICALIZE_TOOLS
|
|||||||
RTEMS_CHECK_NEWLIB
|
RTEMS_CHECK_NEWLIB
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile])
|
||||||
rtems/Makefile
|
|
||||||
rtems/score/Makefile])
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|||||||
Reference in New Issue
Block a user