source: rtems/c/src/lib/libbsp/powerpc/ppcn_60x/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.3 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = .
9
10ACLOCAL = aclocal
11AUTOCONF = autoconf
12ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
13ACLOCAL_AMFLAGS = -I @RTEMS_TOPdir@/aclocal
14
15RTEMS_ROOT = @RTEMS_ROOT@
16PROJECT_ROOT = @PROJECT_ROOT@
17
18VPATH = @srcdir@
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(RTEMS_ROOT)/make/directory.cfg
22
23INSTALL_CHANGE = @INSTALL_CHANGE@
24
25SRCS = README
26
27# We only build the network device driver if HAS_NETWORK was defined
28# NETWORK_DRIVER_yes_V = network
29# NETWORK_DRIVER = $(NETWORK_DRIVER_$(HAS_NETWORK)_V)
30
31all: $(SRCS)
32
33# wrapup is the one that actually builds and installs the library
34#  from the individual .rel files built in other directories
35SUBDIRS = include clock console startup start timer tod $(NETWORK_DRIVER) \
36    universe pci nvram vectors wrapup
37
38Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
39        cd $(top_builddir) \
40         && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
41
42$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
43        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
44
45config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
46        $(SHELL) ./config.status --recheck
47$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4)
48        cd $(srcdir) && $(AUTOCONF)
Note: See TracBrowser for help on using the repository browser.