source: rtems/c/src/lib/libbsp/unix/posix/wrapup/Makefile.am @ 4e36a2f

4.104.114.84.95
Last change on this file since 4e36a2f 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: 996 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
8include $(top_srcdir)/../../../../../../automake/lib.am
9
10if HAS_MP
11BSP_MP_O_FILES = shmsupp
12endif
13BSP_FILES = startup clock console timer $(BSP_MP_O_FILES)
14
15# pieces to pick up out of libcpu/unix
16
17if HAS_MP
18GENERIC_MP_REL_FILES = shmdr
19endif
20GENERIC_FILES = $(GENERIC_MP_REL_FILES)
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, $(GENERIC_FILES), ../../../$(piece)/$(ARCH)/$(piece).rel)
25LIB = $(ARCH)/libbsp.a
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.