source: rtems/c/src/lib/libbsp/m68k/mvme162/wrapup/Makefile.am @ 75adbe5f

4.104.114.84.95
Last change on this file since 75adbe5f 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: 941 bytes
Line 
1##
2## $Id$
3##
4
5# We only build the networking device driver if HAS_NETWORKING was defined
6if HAS_NETWORKING
7NETWORKING_DRIVER = network
8endif
9
10BSP_PIECES = startup clock console timer tod $(NETWORKING_DRIVER)
11
12# bummer; have to use $foreach since % pattern subst rules only replace 1x
13OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
14    $(wildcard ../consolex/$(ARCH)/consolex.rel) \
15    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o) \
16    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
17
18LIB = $(ARCH)/libbsp.a
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../../../../automake/compile.am
22include $(top_srcdir)/../../../../../../automake/lib.am
23
24#
25# (OPTIONAL) Add local stuff here using +=
26#
27
28$(LIB): $(OBJS)
29        $(make-library)
30
31all-local: $(ARCH) $(LIB)
32
33include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.