source: rtems/c/src/lib/libbsp/m68k/mvme167/wrapup/Makefile.am @ 1dbd584a

4.104.114.84.95
Last change on this file since 1dbd584a was 98b0876, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 12:55:59

2003-08-16 Ralf Corsepius <corsepiu@…>

Makefile.am: Reflect having moved automake.
clock/Makefile.am: Reflect having moved automake.
console/Makefile.am: Reflect having moved automake.
fatal/Makefile.am: Reflect having moved automake.
include/Makefile.am: Reflect having moved automake.
network/Makefile.am: Reflect having moved automake.
start/Makefile.am: Reflect having moved automake.
startup/Makefile.am: Reflect having moved automake.
timer/Makefile.am: Reflect having moved automake.
wrapup/Makefile.am: Reflect having moved automake.

  • Property mode set to 100644
File size: 832 bytes
RevLine 
[df49c60]1##
[4e36a2f]2## $Id$
[df49c60]3##
[4e36a2f]4
[df49c60]5# We only build the networking device driver if HAS_NETWORKING was defined
6if HAS_NETWORKING
7NETWORKING_DRIVER = network
8endif
9
10BSP_PIECES = clock console fatal startup timer $(NETWORKING_DRIVER)
[4e36a2f]11
12# bummer; have to use $foreach since % pattern subst rules only replace 1x
[2b62b3d]13OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.$(OBJEXT))) \
14    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.$(OBJEXT)) \
[df49c60]15    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
[4e36a2f]16
17LIB = $(ARCH)/libbsp.a
18
[98b0876]19include $(top_srcdir)/../../../../automake/compile.am
20include $(top_srcdir)/../../../../automake/lib.am
[4e36a2f]21
22#
23# (OPTIONAL) Add local stuff here using +=
24#
25
26$(LIB): $(OBJS)
27        $(make-library)
28
[445c0a0]29all-local: $(ARCH) $(LIB)
[4e36a2f]30
[98b0876]31include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.