source: rtems/c/src/lib/libbsp/i960/cvme961/wrapup/Makefile.am @ bb18b95

4.104.114.84.95
Last change on this file since bb18b95 was 4e36a2f, checked in by Joel Sherrill <joel.sherrill@…>, on 01/31/00 at 15:27:02

Patches rtems-rc-20000118-3.diff and rtems-rc-20000118-4.diff from
Ralf Corsepius <corsepiu@…> that contain:

  • Modifications, (minor) corrections, cleanups to most existing Makefile.ams
  • Adds automake support to all remaining BSPs which have not yet been converted to automake.
  • Makefile.am for all remaining wrapup/Makefile.ams
  • Property mode set to 100644
File size: 906 bytes
Line 
1##
2## $Id$
3##
4
5BSP_FILES = startup clock console timer
6
7if HAS_MP
8GENERIC_MP_REL_FILES = shmdr
9endif
10GENERIC_FILES += $(GENERIC_MP_REL_FILES)
11
12if HAS_MP
13BSP_MP_O_FILES = shmsupp
14endif
15BSP_FILES += $(BSP_MP_O_FILES)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../../../../automake/lib.am
19
20# bummer; have to use $foreach since % pattern subst rules only replace 1x
21OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
22    $(foreach piece, $(GENERIC_FILES), ../../../$(piece)/$(ARCH)/$(piece).rel)
23
24LIB = $(ARCH)/libbsp.a
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30$(LIB): ${OBJS}
31        $(make-library)
32
33$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
34        $(INSTALL_DATA) $< $@
35
36TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
37
38all-local: ${ARCH} $(TMPINSTALL_FILES)
39
40include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.