source: rtems/c/src/lib/libbsp/powerpc/ppcn_60x/wrapup/Makefile.am @ 30160cb

4.104.114.84.95
Last change on this file since 30160cb was 30160cb, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/03 at 05:42:44

2003-12-02 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am: Remove all-local: $(ARCH).
  • console/Makefile.am: Remove all-local: $(ARCH).
  • network/Makefile.am: Remove all-local: $(ARCH).
  • nvram/Makefile.am: Remove all-local: $(ARCH).
  • pci/Makefile.am: Remove all-local: $(ARCH).
  • start/Makefile.am: Remove all-local: $(ARCH).
  • startup/Makefile.am: Remove all-local: $(ARCH).
  • timer/Makefile.am: Remove all-local: $(ARCH).
  • tod/Makefile.am: Remove all-local: $(ARCH).
  • universe/Makefile.am: Remove all-local: $(ARCH).
  • vectors/Makefile.am: Remove all-local: $(ARCH).
  • wrapup/Makefile.am: Remove all-local: $(ARCH).
  • Property mode set to 100644
File size: 749 bytes
Line 
1##
2## $Id$
3##
4
5# We only build the network device driver if HAS_NETWORK was defined
6if HAS_NETWORKING
7NETWORK = network
8endif
9
10BSP_PIECES = startup clock console timer tod $(NETWORK) nvram universe pci \
11    vectors
12# pieces to pick up out of libcpu/$(RTEMS_CPU)
13
14# bummer; have to use $foreach since % pattern subst rules only replace 1x
15OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.$(OBJEXT))) \
16    ../@exceptions@/$(ARCH)/rtems-cpu.rel
17LIB = $(ARCH)/libbsp.a
18
19include $(top_srcdir)/../../../../automake/compile.am
20include $(top_srcdir)/../../../../automake/lib.am
21
22#
23# (OPTIONAL) Add local stuff here using +=
24#
25
26$(LIB): $(OBJS)
27        $(make-library)
28
29all-local: $(LIB)
30
31include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.