source: rtems/c/src/lib/libbsp/m68k/efi332/wrapup/Makefile.am @ d28bfd27

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

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

  • clock/Makefile.am, console/Makefile.am, spurious/Makefile.am, start/Makefile.am, startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 799 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7BSP_PIECES = startup clock console spurious timer
8
9# bummer; have to use $foreach since % pattern subst rules only replace 1x
10OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o))
11LIB = $(ARCH)/libbsp.a
12
13include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
14include $(top_srcdir)/../../../../../../automake/compile.am
15include $(top_srcdir)/../../../../../../automake/lib.am
16
17#
18# (OPTIONAL) Add local stuff here using +=
19#
20
21$(LIB): $(OBJS)
22        $(make-library)
23
24$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
25        $(INSTALL_DATA) $< $@
26
27TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
28
29all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
30
31.PRECIOUS: $(LIB)
32
33include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.