source: rtems/c/src/lib/libbsp/powerpc/score603e/wrapup/Makefile.in @ 362ec23e

4.104.114.84.95
Last change on this file since 362ec23e was 362ec23e, checked in by Joel Sherrill <joel.sherrill@…>, on 01/10/00 at 18:10:59

Patch rtems-rc-20000104-12.diff from Ralf Corsepius <corsepiu@…>
which converts the PowerPC BSPs to configuration and more automake.

  • Besides adding partial automake support, rsp converting all powerpc BSPs to make them compliant to the new configuration scheme, this patch attempts to fix several configuration bugs in powerpc related Makefiles.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ..
9subdir = wrapup
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
16BSP_PIECES = startup clock console timer tod vectors PCI_bus
17# pieces to pick up out of libcpu/$(RTEMS_CPU)
18CPU_PIECES =
19GENERIC_PIECES =
20
21# bummer; have to use $foreach since % pattern subst rules only replace 1x
22OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
23    $(foreach piece, $(CPU_PIECES), \
24    ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel) $(foreach \
25    piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
26LIB = $(ARCH)/libbsp.a
27
28include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
29include $(RTEMS_ROOT)/make/lib.cfg
30
31INSTALL = @INSTALL@
32INSTALL_CHANGE = @INSTALL_CHANGE@
33
34#
35# (OPTIONAL) Add local stuff here using +=
36#
37
38DEFINES +=
39CPPFLAGS +=
40CFLAGS +=
41
42LD_PATHS +=
43LD_LIBS +=
44LDFLAGS +=
45
46#
47# Add your list of files to delete here.  The config files
48#  already know how to delete some stuff, so you may want
49#  to just run 'make clean' first to see what gets missed.
50#  'make clobber' already includes 'make clean'
51#
52
53CLEAN_ADDITIONS +=
54CLOBBER_ADDITIONS +=
55
56$(LIB): ${OBJS}
57        $(make-library)
58
59all: ${ARCH} $(SRCS) $(LIB)
60        $(INSTALL_VARIANT) -m 644 $(LIB) $(PROJECT_RELEASE)/lib
61
62$(PROJECT_ROOT)/@RTEMS_BSP@/lib/bsp_specs: ../bsp_specs
63        $(INSTALL_DATA) $< $@
64
65Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
66        cd $(top_builddir) \
67         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.