source: rtems/c/src/lib/libbsp/powerpc/dmv177/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.8 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
16# We only build the networking device driver if HAS_NETWORKING was defined
17NETWORKING_DRIVER_yes_V = sonic
18NETWORKING_DRIVER = $(NETWORKING_DRIVER_$(HAS_NETWORKING)_V)
19
20# pieces specific to this BSP
21BSP_PIECES = startup clock console scv64 timer tod $(NETWORKING_DRIVER)
22
23# pieces to pick up out of libcpu/$(RTEMS_CPU)
24CPU_PIECES =
25
26# shared pieces
27GENERIC_PIECES =
28
29# bummer; have to use $foreach since % pattern subst rules only replace 1x
30OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
31    $(foreach piece, $(CPU_PIECES), \
32    ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel) $(foreach \
33    piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
34LIB = $(ARCH)/libbsp.a
35
36include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
37include $(RTEMS_ROOT)/make/lib.cfg
38
39INSTALL = @INSTALL@
40INSTALL_CHANGE = @INSTALL_CHANGE@
41
42#
43# (OPTIONAL) Add local stuff here using +=
44#
45
46DEFINES +=
47CPPFLAGS +=
48CFLAGS +=
49
50LD_PATHS +=
51LD_LIBS +=
52LDFLAGS +=
53
54#
55# Add your list of files to delete here.  The config files
56#  already know how to delete some stuff, so you may want
57#  to just run 'make clean' first to see what gets missed.
58#  'make clobber' already includes 'make clean'
59#
60
61CLEAN_ADDITIONS +=
62CLOBBER_ADDITIONS +=
63
64$(LIB): ${OBJS}
65        $(make-library)
66
67all: ${ARCH} $(SRCS) $(LIB)
68        $(INSTALL_VARIANT) -m 644 $(LIB) $(PROJECT_RELEASE)/lib
69
70$(PROJECT_ROOT)/@RTEMS_BSP@/lib/bsp_specs: ../bsp_specs
71        $(INSTALL_DATA) $< $@
72
73Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
74        cd $(top_builddir) \
75         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.