source: rtems/c/src/lib/libbsp/m68k/mrm332/wrapup/Makefile.am @ c33a702

4.104.114.84.95
Last change on this file since c33a702 was c33a702, checked in by Joel Sherrill <joel.sherrill@…>, on 05/25/01 at 17:35:09

2001-05-25 Joel Sherrill <joel@…>

  • clock/Makefile.am, console/Makefile.am, spurious/Makefile.am,

start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
wrapup/Makefile.am: Modified to include compile.am.

  • startup/bspstart.c: Removed include of <libcsupport.h>
  • 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.