source: rtems/c/src/lib/libbsp/hppa1.1/simhppa/wrapup/Makefile.am @ 80defac

4.104.114.84.95
Last change on this file since 80defac was 80defac, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/30/02 at 06:05:34

2002-06-29 Ralf Corsepius <corsepiu@…>

  • wrapup/Makefile.am: Remove preinstallation of libbsp.a,
  • Property mode set to 100644
File size: 973 bytes
Line 
1##
2## $Id$
3##
4
5# pieces to pick up out of libcpu/hppa
6CPU_FILES = clock milli timer
7
8if HAS_MP
9GENERIC_MP_REL_FILES = shmdr
10endif
11GENERIC_FILES = $(GENERIC_MP_REL_FILES)
12
13if HAS_MP
14BSP_MP_O_FILES = shmsupp
15endif
16BSP_FILES = startup tty $(BSP_MP_O_FILES)
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
19include $(top_srcdir)/../../../../../../automake/compile.am
20include $(top_srcdir)/../../../../../../automake/lib.am
21
22# bummer; have to use $foreach since % pattern subst rules only replace 1x
23OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
24    $(foreach piece, $(CPU_FILES), ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel) \
25    $(foreach piece, $(GENERIC_FILES), ../../../$(piece)/$(ARCH)/$(piece).rel)
26
27LIB = $(ARCH)/libbsp.a
28
29#
30# (OPTIONAL) Add local stuff here using +=
31#
32
33$(LIB): $(OBJS)
34        $(make-library)
35
36all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
37
38include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.