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

4.104.114.84.95
Last change on this file since bd5c21c5 was bd5c21c5, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:40:19

2002-03-27 Ralf Corsepius <corsepiu@…>

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