source: rtems/c/src/lib/libbsp/sparc/erc32/wrapup/Makefile.am @ 477e2d19

4.104.114.84.95
Last change on this file since 477e2d19 was 2700423, checked in by Joel Sherrill <joel.sherrill@…>, on 11/13/00 at 22:29:14

2000-11-13 Jiri Gaisler <jgais@…>

  • Makefile.am, configure.in, gnatsupp/Makefile.am, gnatsupp/gnatsupp.c, include/Makefile.am, include/bsp.h, start/Makefile.am, startup/Makefile.am, startup/setvec.c, wrapup/Makefile.am:
  • erc32sonic: New directory.
  • erc32sonic/Makefile.am, erc32sonic/erc32sonic.c, erc32sonic/.cvsignore: New files.
  • include/erc32.h: New file.
  • startup/boardinit.S: New file. Big update of SPARC support for ERC32 and LEON. Added support for ERC32 without floating point. Added SONIC support as configured on Tharsys ERC32 board. The bsp's share various code in the shared directory:

gnat-support, start-up code, etc.

To decrease the foot-print, I removed the 16 kbyte start-up
stack that was put in .bss and never reused once the system
was up. The stack is now put between the heap and the
workspace. To reclaim it, the user can do a rtems_region_extend
to merge the stack to the heap region once the system is up.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7# We only build the networking device driver if HAS_NETWORKING was defined
8if HAS_NETWORKING
9NETWORKING_DRIVER = erc32sonic
10endif
11
12BSP_PIECES = startup console clock timer gnatsupp $(NETWORKING_DRIVER)
13# pieces to pick up out of libcpu/sparc
14CPU_PIECES = reg_win syscall
15
16# bummer; have to use $foreach since % pattern subst rules only replace 1x
17OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
18    $(foreach piece, $(CPU_PIECES), ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel)
19LIB = $(ARCH)/libbsp.a
20
21include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
22include $(top_srcdir)/../../../../../../automake/compile.am
23include $(top_srcdir)/../../../../../../automake/lib.am
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
29$(LIB): $(OBJS)
30        $(make-library)
31
32$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
33        $(INSTALL_DATA) $< $@
34
35TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
36
37all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
38
39.PRECIOUS: $(LIB)
40
41include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.