source: rtems/c/src/lib/libbsp/m68k/ods68302/wrapup/Makefile.am @ 3f5480c

4.104.114.84.95
Last change on this file since 3f5480c was 75adbe5f, checked in by Joel Sherrill <joel.sherrill@…>, on 08/05/02 at 19:02:15

2002-08-05 Joel Sherrill <joel@…>

  • Per PR260 eliminate use of make-target-options. This impacted RTEMS allowing a distinction between the CPU32 and CPU32+ in the SuperCore? and required that the m68k optimized memcpy be moved to libcpu.
  • wrapup/Makefile.am: Pick up memcpy.o from libcpu.
  • Property mode set to 100644
File size: 645 bytes
Line 
1##
2## $Id$
3##
4
5BSP_PIECES = startup clock console timer
6
7# bummer; have to use $foreach since % pattern subst rules only replace 1x
8OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
9    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.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
23all-local: $(ARCH) $(LIB)
24
25include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.