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

4.104.114.84.95
Last change on this file since 9a7e074d was 9a7e074d, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 15:42:53

2000-09-04 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am, console/Makefile.am, shmsupp/Makefile.am, start/Makefile.am, startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[df49c60]1##
[4e36a2f]2## $Id$
[df49c60]3##
[4e36a2f]4
[4bf1801]5AUTOMAKE_OPTIONS = foreign 1.4
6
[4e36a2f]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
[df49c60]15BSP_FILES = startup clock console timer $(BSP_MP_O_FILES)
[4e36a2f]16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[9a7e074d]18include $(top_srcdir)/../../../../../../automake/compile.am
[4e36a2f]19include $(top_srcdir)/../../../../../../automake/lib.am
20
21# bummer; have to use $foreach since % pattern subst rules only replace 1x
22OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
[9a7e074d]23    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(ARCH)/*.o) \
24    $(foreach piece, $(GENERIC_FILES), ../../../$(piece)/$(ARCH)/$(piece).rel)
[4e36a2f]25
26LIB = $(ARCH)/libbsp.a
27
28#
29# (OPTIONAL) Add local stuff here using +=
30#
31
32$(LIB): ${OBJS}
33        $(make-library)
34
35$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
36        $(INSTALL_DATA) $< $@
37
38TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
39
40all-local: ${ARCH} $(TMPINSTALL_FILES)
41
42include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.