source: rtems/c/src/lib/libbsp/sh/simsh4/wrapup/Makefile.am @ 70d7eaa9

4.104.114.84.95
Last change on this file since 70d7eaa9 was 70d7eaa9, checked in by Joel Sherrill <joel.sherrill@…>, on 10/15/01 at 18:07:19

2001-10-12 Ralf Corsepius <corsepiu@…>

  • configure.ac: Added support for START_HW_INIT.
  • console/Makefile.am: Removed VPATH.
  • include/Makefile.am: Added missing ramdisk.h to include_HEADERS.
  • startup/linkcmds: Do not force output format to coff-sh.
  • startup/linkcmds-le: Comment out force of output format and add comment questioning need to have special linkcmds for little endian.
  • wrapup/Makefile.am: Add ramdisk to list of BSP_PIECES.
  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[cd67dca]1##
2## $Id$
3##
4## build and install libbsp
5##
6
7AUTOMAKE_OPTIONS = foreign 1.4
8
[70d7eaa9]9BSP_PIECES = startup console clock timer
10
11# FIXME: This is missing.
12# BSP_PIECES = ramdisk
[cd67dca]13
14# pieces to pick up out of libcpu/sh
15CPU_PIECES = score
16
17# bummer; have to use $foreach since % pattern subst rules only replace 1x
18OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/$(piece).rel) \
[70d7eaa9]19    $(foreach piece, $(CPU_PIECES), ../../../../libcpu/$(RTEMS_CPU)/sh7750/$(piece)/$(ARCH)/$(piece).rel)
[cd67dca]20
21LIB = $(ARCH)/libbsp.a
22
23include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
24include $(top_srcdir)/../../../../../../automake/compile.am
25include $(top_srcdir)/../../../../../../automake/lib.am
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31$(LIB): $(OBJS)
32        $(make-library)
33
34$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
35        $(INSTALL_DATA) $< $@
36
37TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
38
39all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
40
41.PRECIOUS: $(LIB)
42
43include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.