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

4.104.114.84.95
Last change on this file since 9e52b29 was df49c60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 15:00:15

Merged from 4.5.0-beta3a

  • Property mode set to 100644
File size: 922 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
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 = startup clock console timer $(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.