source: rtems/c/src/lib/libbsp/m68k/idp/wrapup/Makefile.am @ 476b632

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

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

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