From 21677c0e664f84ac20ffec33209348c52d00aace Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 26 Jan 2000 14:20:08 +0000 Subject: Patch rtems-rc-20000118-0.diff from Ralf Corsepius that converts the a29k to automake. This patch contains * An initial merger of the libcpu/a29k stuff you sent yesterday. AFAIS, most code inside them seems to be empty stubs. One file even contains a function called mips_*** which might indicate that this part might contain mips code or the code the initial porter used as template for porting. Unfortunately, I don't know anything about the a29k so I can't comment on the details. * A dummy bsp_specs to libbsp/29k/portsw * An update to the automake files related to the a29k. Note: * This patch is completely untested, because I don't have a toolchain for it. * The files in libcpu/a29k include bsp.h => The libbsp vs. libcpu-issue hits again. --- c/src/lib/libbsp/a29k/portsw/startup/Makefile.am | 43 ++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 c/src/lib/libbsp/a29k/portsw/startup/Makefile.am (limited to 'c/src/lib/libbsp/a29k/portsw/startup/Makefile.am') diff --git a/c/src/lib/libbsp/a29k/portsw/startup/Makefile.am b/c/src/lib/libbsp/a29k/portsw/startup/Makefile.am new file mode 100644 index 0000000000..fc66747f7c --- /dev/null +++ b/c/src/lib/libbsp/a29k/portsw/startup/Makefile.am @@ -0,0 +1,43 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 + +VPATH = @srcdir@:@srcdir@/../../../shared + +PGM = $(ARCH)/startup.rel + +C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \ + setvec.c gnatinstallhandler.c +C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) + +OBJS = $(C_O_FILES) + +include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg +include $(top_srcdir)/../../../../../../automake/lib.am + +# +# (OPTIONAL) Add local stuff here using += +# + +$(PGM): $(OBJS) + $(make-rel) + +$(PROJECT_RELEASE)/lib/ramlink: ramlink + $(INSTALL_DATA) $< $@ + +$(PROJECT_RELEASE)/lib/romlink: romlink + $(INSTALL_DATA) $< $@ + +# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile +TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/ramlink \ + $(PROJECT_RELEASE)/lib/romlink + +all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES) + +.PRECIOUS: $(PGM) + +EXTRA_DIST = bspclean.c bspstart.c main.c ramlink romlink setvec.c + +include $(top_srcdir)/../../../../../../automake/local.am -- cgit v1.2.3