source: rtems/c/src/lib/libbsp/arm/arm_bare_bsp/wrapup/Makefile.am @ 460c1092

4.104.114.84.95
Last change on this file since 460c1092 was 606d797c, checked in by Joel Sherrill <joel.sherrill@…>, on 10/17/01 at 20:26:14

2001-10-17 Joel Sherrill <joel@…>

  • timer: New subdirectory.
  • timer/Makefile.am: New file.
  • timer/.cvsignore: New file.
  • Makefile.am: Modified to reflect above.
  • configure.ac: Ditto.
  • wrapup/Makefile.am: Ditto.
  • include/bsp.h: Stubs to let tm27 compile and link.
  • Property mode set to 100644
File size: 776 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7BSP_PIECES = clock console startup timer irq
8
9# bummer; have to use $foreach since % pattern subst rules only replace 1x
10OBJS = $(foreach piece, $(BSP_PIECES), ../$(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: $(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.