source: rtems/c/src/lib/libbsp/powerpc/score603e/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.1 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
27all: $(SRCS)
28
29# wrapup is the one that actually builds and installs the library
30#  from the individual .rel files built in other directories
31SUBDIRS = include clock console startup start timer tod PCI_bus vectors \
32    wrapup
33
34Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
35        cd $(top_builddir) \
36         && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
37
38$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
39        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
40
41config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
42        $(SHELL) ./config.status --recheck
43$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4)
44        cd $(srcdir) && $(AUTOCONF)
Note: See TracBrowser for help on using the repository browser.