Changeset 35d7b15 in rtems


Ignore:
Timestamp:
12/21/99 14:41:43 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
369ef189
Parents:
5bce35b
Message:

Patch rtems-rc-19991203-7.diff from Ralf Corsepius <corsepiu@…>
which adds partial automake support to libcpu/<cpu>/*.

Until now I have only implemented full automake support for the sh (my
demonstration example :) and the i386 (inevitiable for structural
reasons of this subdirectory). For all other cpus only their toplevel
directories (exception: powerpc), include subdirectories and a few
selected subdirectories have been converted to automake.
I did this on purpose, because add automake support to each subdirectory
requires individual adaptations which to be tested individually.

Additionally the weirdnesses of the powerpc subdirectories hit again,
esp. some powerpc cpu-models

  • install files to $(PROJECT_INCLUDE)/<cpu-model>/ while others install them to $(PROJECT_INCLUDE)/
  • the scheme used to configure libcpu/powerpc/ is difficult to implement using automake, therefore this subdirectory still is configured by autoconf (The one out of an unlimited set selection scheme hits again :), though powerpc/*/* subdirectories already apply automake.

The patch also reveils structural weaknesses in RTEMS:

E.g. There seem to exist at least 5 different general schemes:

  • Not using libcpu at all (eg. i960)
  • Strictly tree-style a libcpu/<cpu-variant>/* (eg. m68k, sh)
  • Flat libcpu directory layout with cpu-variants merged into sources or not destinguishing cpu-variants (i386)
  • Not supporting variants with deep source tree (sparc, hppa, mips64orion)
  • Woven directory structure with shared directories (powerpc)

I regret having to say this, but from my POV this means, that there
doesn't exist a general implementation scheme for libcpu at all.

To apply:

rm -rf ./c/src/lib/libcpu/i386/wrapup
rm -rf ./c/src/lib/libcpu/mips64orion/include
rm -rf ./c/src/lib/libcpu/powerpc/ppc403/include
patch -p1 < rtems-rc-19991203-7.diff
./bootstrap

Location:
c/src/lib/libcpu
Files:
53 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libcpu/configure.in

    r5bce35b r35d7b15  
    3232
    3333# find all the CPU dependent library Makefiles
    34 RTEMS_CHECK_MAKEFILE($RTEMS_CPU)
     34if test -f $srcdir/$RTEMS_CPU/configure.in; then
     35  cfg_subdirs="$RTEMS_CPU"
     36else
     37  RTEMS_CHECK_MAKEFILE($RTEMS_CPU)
     38fi
     39AC_CONFIG_SUBDIRS($cfg_subdirs)
    3540
    3641AC_OUTPUT(
  • c/src/lib/libcpu/hppa1.1/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15
     16SHELL = @SHELL@
     17
    618srcdir = @srcdir@
    719top_srcdir = @top_srcdir@
    8 top_builddir = ..
    9 subdir = hppa1.1
    10 
     20VPATH = @srcdir@
     21prefix = @prefix@
     22exec_prefix = @exec_prefix@
     23
     24bindir = @bindir@
     25sbindir = @sbindir@
     26libexecdir = @libexecdir@
     27datadir = @datadir@
     28sysconfdir = @sysconfdir@
     29sharedstatedir = @sharedstatedir@
     30localstatedir = @localstatedir@
     31libdir = @libdir@
     32infodir = @infodir@
     33mandir = @mandir@
     34includedir = @includedir@
     35oldincludedir = /usr/include
     36
     37DESTDIR =
     38
     39pkgdatadir = $(datadir)/@PACKAGE@
     40pkglibdir = $(libdir)/@PACKAGE@
     41pkgincludedir = $(includedir)/@PACKAGE@
     42
     43top_builddir = .
     44
     45ACLOCAL = @ACLOCAL@
     46AUTOCONF = @AUTOCONF@
     47AUTOMAKE = @AUTOMAKE@
     48AUTOHEADER = @AUTOHEADER@
     49
     50INSTALL = @INSTALL@
     51INSTALL_PROGRAM = @INSTALL_PROGRAM@
     52INSTALL_DATA = @INSTALL_DATA@
     53INSTALL_SCRIPT = @INSTALL_SCRIPT@
     54INSTALL_STRIP_FLAG =
     55transform = @program_transform_name@
     56
     57NORMAL_INSTALL = :
     58PRE_INSTALL = :
     59POST_INSTALL = :
     60NORMAL_UNINSTALL = :
     61PRE_UNINSTALL = :
     62POST_UNINSTALL = :
     63build_alias = @build_alias@
     64build_triplet = @build@
     65host_alias = @host_alias@
     66host_triplet = @host@
     67target_alias = @target_alias@
     68target_triplet = @target@
     69CC = @CC@
     70CC_FOR_TARGET = @CC_FOR_TARGET@
     71CPP = @CPP@
     72GCCSED = @GCCSED@
     73INSTALL_CHANGE = @INSTALL_CHANGE@
     74MAINT = @MAINT@
     75MAKEINFO = @MAKEINFO@
     76PACKAGE = @PACKAGE@
     77PACKHEX = @PACKHEX@
     78PROJECT_INCLUDE = @PROJECT_INCLUDE@
     79PROJECT_RELEASE = @PROJECT_RELEASE@
     80PROJECT_ROOT = @PROJECT_ROOT@
     81RTEMS_BSP = @RTEMS_BSP@
     82RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     83RTEMS_CPU = @RTEMS_CPU@
     84RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     85RTEMS_HOST = @RTEMS_HOST@
     86RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1187RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    17 include $(RTEMS_ROOT)/make/directory.cfg
    18 
    19 INSTALL_CHANGE = @INSTALL_CHANGE@
     88RTEMS_TOPdir = @RTEMS_TOPdir@
     89VERSION = @VERSION@
     90
     91AUTOMAKE_OPTIONS = foreign 1.4
     92ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
    2093
    2194SUBDIRS = include milli clock timer semaphore
    22 
    23 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     95ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
     96mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     97CONFIG_CLEAN_FILES =
     98DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in
     99
     100
     101DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     102
     103TAR = gtar
     104GZIP_ENV = --best
     105all: all-redirect
     106.SUFFIXES:
     107$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/subdirs.am $(top_srcdir)/../../../../../automake/local.am
     108        cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
     109
     110Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    24111        cd $(top_builddir) \
    25          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     112          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
     113
     114$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
     115        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
     116
     117config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
     118        $(SHELL) ./config.status --recheck
     119$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
     120        cd $(srcdir) && $(AUTOCONF)
     121
     122# This directory's subdirectories are mostly independent; you can cd
     123# into them and run `make' without going through this Makefile.
     124# To change the values of `make' variables: instead of editing Makefiles,
     125# (1) if the variable is set in `config.status', edit `config.status'
     126#     (which will cause the Makefiles to be regenerated when you run `make');
     127# (2) otherwise, pass the desired values on the `make' command line.
     128
     129@SET_MAKE@
     130
     131all-recursive install-data-recursive install-exec-recursive \
     132installdirs-recursive install-recursive uninstall-recursive  \
     133check-recursive installcheck-recursive info-recursive dvi-recursive:
     134        @set fnord $(MAKEFLAGS); amf=$$2; \
     135        dot_seen=no; \
     136        target=`echo $@ | sed s/-recursive//`; \
     137        list='$(SUBDIRS)'; for subdir in $$list; do \
     138          echo "Making $$target in $$subdir"; \
     139          if test "$$subdir" = "."; then \
     140            dot_seen=yes; \
     141            local_target="$$target-am"; \
     142          else \
     143            local_target="$$target"; \
     144          fi; \
     145          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     146           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     147        done; \
     148        if test "$$dot_seen" = "no"; then \
     149          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     150        fi; test -z "$$fail"
     151
     152mostlyclean-recursive clean-recursive distclean-recursive \
     153maintainer-clean-recursive:
     154        @set fnord $(MAKEFLAGS); amf=$$2; \
     155        dot_seen=no; \
     156        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
     157          rev="$$subdir $$rev"; \
     158          test "$$subdir" = "." && dot_seen=yes; \
     159        done; \
     160        test "$$dot_seen" = "no" && rev=". $$rev"; \
     161        target=`echo $@ | sed s/-recursive//`; \
     162        for subdir in $$rev; do \
     163          echo "Making $$target in $$subdir"; \
     164          if test "$$subdir" = "."; then \
     165            local_target="$$target-am"; \
     166          else \
     167            local_target="$$target"; \
     168          fi; \
     169          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     170           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     171        done && test -z "$$fail"
     172tags-recursive:
     173        list='$(SUBDIRS)'; for subdir in $$list; do \
     174          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
     175        done
     176
     177tags: TAGS
     178
     179ID: $(HEADERS) $(SOURCES) $(LISP)
     180        list='$(SOURCES) $(HEADERS)'; \
     181        unique=`for i in $$list; do echo $$i; done | \
     182          awk '    { files[$$0] = 1; } \
     183               END { for (i in files) print i; }'`; \
     184        here=`pwd` && cd $(srcdir) \
     185          && mkid -f$$here/ID $$unique $(LISP)
     186
     187TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     188        tags=; \
     189        here=`pwd`; \
     190        list='$(SUBDIRS)'; for subdir in $$list; do \
     191   if test "$$subdir" = .; then :; else \
     192            test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
     193   fi; \
     194        done; \
     195        list='$(SOURCES) $(HEADERS)'; \
     196        unique=`for i in $$list; do echo $$i; done | \
     197          awk '    { files[$$0] = 1; } \
     198               END { for (i in files) print i; }'`; \
     199        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     200          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     201
     202mostlyclean-tags:
     203
     204clean-tags:
     205
     206distclean-tags:
     207        -rm -f TAGS ID
     208
     209maintainer-clean-tags:
     210
     211distdir = $(PACKAGE)-$(VERSION)
     212top_distdir = $(distdir)
     213
     214# This target untars the dist file and tries a VPATH configuration.  Then
     215# it guarantees that the distribution is self-contained by making another
     216# tarfile.
     217distcheck: dist
     218        -rm -rf $(distdir)
     219        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
     220        mkdir $(distdir)/=build
     221        mkdir $(distdir)/=inst
     222        dc_install_base=`cd $(distdir)/=inst && pwd`; \
     223        cd $(distdir)/=build \
     224          && ../configure --srcdir=.. --prefix=$$dc_install_base \
     225          && $(MAKE) $(AM_MAKEFLAGS) \
     226          && $(MAKE) $(AM_MAKEFLAGS) dvi \
     227          && $(MAKE) $(AM_MAKEFLAGS) check \
     228          && $(MAKE) $(AM_MAKEFLAGS) install \
     229          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
     230          && $(MAKE) $(AM_MAKEFLAGS) dist
     231        -rm -rf $(distdir)
     232        @banner="$(distdir).tar.gz is ready for distribution"; \
     233        dashes=`echo "$$banner" | sed s/./=/g`; \
     234        echo "$$dashes"; \
     235        echo "$$banner"; \
     236        echo "$$dashes"
     237dist: distdir
     238        -chmod -R a+r $(distdir)
     239        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     240        -rm -rf $(distdir)
     241dist-all: distdir
     242        -chmod -R a+r $(distdir)
     243        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     244        -rm -rf $(distdir)
     245distdir: $(DISTFILES)
     246        -rm -rf $(distdir)
     247        mkdir $(distdir)
     248        -chmod 777 $(distdir)
     249        here=`cd $(top_builddir) && pwd`; \
     250        top_distdir=`cd $(distdir) && pwd`; \
     251        distdir=`cd $(distdir) && pwd`; \
     252        cd $(top_srcdir) \
     253          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
     254        @for file in $(DISTFILES); do \
     255          d=$(srcdir); \
     256          if test -d $$d/$$file; then \
     257            cp -pr $$d/$$file $(distdir)/$$file; \
     258          else \
     259            test -f $(distdir)/$$file \
     260            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     261            || cp -p $$d/$$file $(distdir)/$$file || :; \
     262          fi; \
     263        done
     264        for subdir in $(SUBDIRS); do \
     265          if test "$$subdir" = .; then :; else \
     266            test -d $(distdir)/$$subdir \
     267            || mkdir $(distdir)/$$subdir \
     268            || exit 1; \
     269            chmod 777 $(distdir)/$$subdir; \
     270            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
     271              || exit 1; \
     272          fi; \
     273        done
     274info-am:
     275info: info-recursive
     276dvi-am:
     277dvi: dvi-recursive
     278check-am: all-am
     279check: check-recursive
     280installcheck-am:
     281installcheck: installcheck-recursive
     282install-exec-am:
     283install-exec: install-exec-recursive
     284
     285install-data-am:
     286install-data: install-data-recursive
     287
     288install-am: all-am
     289        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     290install: install-recursive
     291uninstall-am:
     292uninstall: uninstall-recursive
     293all-am: Makefile
     294all-redirect: all-recursive
     295install-strip:
     296        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     297installdirs: installdirs-recursive
     298installdirs-am:
     299
     300
     301mostlyclean-generic:
     302
     303clean-generic:
     304
     305distclean-generic:
     306        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     307        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     308
     309maintainer-clean-generic:
     310mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     311
     312mostlyclean: mostlyclean-recursive
     313
     314clean-am:  clean-tags clean-generic mostlyclean-am
     315
     316clean: clean-recursive
     317
     318distclean-am:  distclean-tags distclean-generic clean-am
     319
     320distclean: distclean-recursive
     321        -rm -f config.status
     322
     323maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     324                distclean-am
     325        @echo "This command is intended for maintainers to use;"
     326        @echo "it deletes files that may require special tools to rebuild."
     327
     328maintainer-clean: maintainer-clean-recursive
     329        -rm -f config.status
     330
     331.PHONY: install-data-recursive uninstall-data-recursive \
     332install-exec-recursive uninstall-exec-recursive installdirs-recursive \
     333uninstalldirs-recursive all-recursive check-recursive \
     334installcheck-recursive info-recursive dvi-recursive \
     335mostlyclean-recursive distclean-recursive clean-recursive \
     336maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
     337distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
     338dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
     339install-exec install-data-am install-data install-am install \
     340uninstall-am uninstall all-redirect all-am all installdirs-am \
     341installdirs mostlyclean-generic distclean-generic clean-generic \
     342maintainer-clean-generic clean mostlyclean distclean maintainer-clean
     343
     344
     345depend-recursive \
     346preinstall-recursive \
     347debug-recursive \
     348profile-recursive:
     349        @set fnord $(MAKEFLAGS); amf=$$2; \
     350        dot_seen=no; \
     351        target=`echo $@ | sed s/-recursive//`; \
     352        list='$(SUBDIRS)'; for subdir in $$list; do \
     353          echo "Making $$target in $$subdir"; \
     354          if test "$$subdir" = "."; then \
     355            dot_seen=yes; \
     356            local_target="$$target-am"; \
     357          else \
     358            local_target="$$target"; \
     359          fi; \
     360          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     361           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     362        done; \
     363        if test "$$dot_seen" = "no"; then \
     364          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     365        fi; test -z "$$fail"
     366
     367debug: debug-recursive
     368.PHONY: debug-recursive
     369
     370profile: profile-recursive
     371.PHONY: profile-recursive
     372
     373preinstall: preinstall-recursive
     374.PHONY: preinstall-recursive
     375
     376depend: depend-recursive
     377.PHONY: depend-recursive
     378
     379debug-am:
     380debug: debug-am
     381.PHONY: debug debug-am
     382
     383profile-am:
     384profile: profile-am
     385.PHONY: profile profile-am
     386
     387preinstall-am: $(PREINSTALL_FILES)
     388preinstall: preinstall-am
     389.PHONY: preinstall preinstall-am
     390
     391depend-am:
     392depend: depend-am
     393.PHONY: depend depend-am
     394
     395# Tell versions [3.59,3.63) of GNU make to not export all variables.
     396# Otherwise a system limit (for SysV at least) may be exceeded.
     397.NOEXPORT:
  • c/src/lib/libcpu/hppa1.1/clock/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = hppa1.1/clock
     8top_builddir = ..
     9subdir = clock
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/hppa1.1/include/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 # $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15SHELL = @SHELL@
     16
    617srcdir = @srcdir@
    718top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = hppa1.1/include
    10 
     19VPATH = @srcdir@
     20prefix = @prefix@
     21exec_prefix = @exec_prefix@
     22
     23bindir = @bindir@
     24sbindir = @sbindir@
     25libexecdir = @libexecdir@
     26datadir = @datadir@
     27sysconfdir = @sysconfdir@
     28sharedstatedir = @sharedstatedir@
     29localstatedir = @localstatedir@
     30libdir = @libdir@
     31infodir = @infodir@
     32mandir = @mandir@
     33includedir = @includedir@
     34oldincludedir = /usr/include
     35
     36DESTDIR =
     37
     38pkgdatadir = $(datadir)/@PACKAGE@
     39pkglibdir = $(libdir)/@PACKAGE@
     40pkgincludedir = $(includedir)/@PACKAGE@
     41
     42top_builddir = ..
     43
     44ACLOCAL = @ACLOCAL@
     45AUTOCONF = @AUTOCONF@
     46AUTOMAKE = @AUTOMAKE@
     47AUTOHEADER = @AUTOHEADER@
     48
     49INSTALL = @INSTALL@
     50INSTALL_PROGRAM = @INSTALL_PROGRAM@
     51INSTALL_DATA = @INSTALL_DATA@
     52INSTALL_SCRIPT = @INSTALL_SCRIPT@
     53INSTALL_STRIP_FLAG =
     54transform = @program_transform_name@
     55
     56NORMAL_INSTALL = :
     57PRE_INSTALL = :
     58POST_INSTALL = :
     59NORMAL_UNINSTALL = :
     60PRE_UNINSTALL = :
     61POST_UNINSTALL = :
     62build_alias = @build_alias@
     63build_triplet = @build@
     64host_alias = @host_alias@
     65host_triplet = @host@
     66target_alias = @target_alias@
     67target_triplet = @target@
     68CC = @CC@
     69CC_FOR_TARGET = @CC_FOR_TARGET@
     70CPP = @CPP@
     71GCCSED = @GCCSED@
     72INSTALL_CHANGE = @INSTALL_CHANGE@
     73MAINT = @MAINT@
     74MAKEINFO = @MAKEINFO@
     75PACKAGE = @PACKAGE@
     76PACKHEX = @PACKHEX@
     77PROJECT_INCLUDE = @PROJECT_INCLUDE@
     78PROJECT_RELEASE = @PROJECT_RELEASE@
     79PROJECT_ROOT = @PROJECT_ROOT@
     80RTEMS_BSP = @RTEMS_BSP@
     81RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     82RTEMS_CPU = @RTEMS_CPU@
     83RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     84RTEMS_HOST = @RTEMS_HOST@
     85RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1186RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 H_FILES = $(srcdir)/runway.h $(srcdir)/semaphore.h
    17 
    18 SRCS = $(H_FILES)
    19 
    20 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    21 include $(RTEMS_ROOT)/make/leaf.cfg
    22 
    23 INSTALL_CHANGE = @INSTALL_CHANGE@
    24 mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
    25 
    26 INSTALLDIRS = $(PROJECT_INCLUDE)
    27 
    28 $(INSTALLDIRS):
    29         @$(mkinstalldirs) $(INSTALLDIRS)
    30 
    31 CLEAN_ADDITIONS +=
    32 CLOBBER_ADDITIONS +=
    33 
    34 all: install
     87RTEMS_TOPdir = @RTEMS_TOPdir@
     88VERSION = @VERSION@
     89
     90AUTOMAKE_OPTIONS = foreign 1.4
     91
     92H_FILES = runway.h semaphore.h
     93noinst_HEADERS = $(H_FILES)
    3594
    3695# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
    3796#       file name conflicts
    3897
    39 install:
    40         $(mkinstalldirs) $(PROJECT_INCLUDE)/hppa1.1
    41         @$(INSTALL_CHANGE) -m 644 $(H_FILES) $(PROJECT_INCLUDE)/hppa1.1
    42 
    43 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     98TMPINSTALL_FILES =  $(PROJECT_INCLUDE)/hppa1.1 $(H_FILES:%=$(PROJECT_INCLUDE)/hppa1.1/%)
     99
     100mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     101CONFIG_CLEAN_FILES =
     102HEADERS =  $(noinst_HEADERS)
     103
     104DIST_COMMON =  Makefile.am Makefile.in
     105
     106
     107DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     108
     109TAR = gtar
     110GZIP_ENV = --best
     111all: all-redirect
     112.SUFFIXES:
     113$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
     114        cd $(top_srcdir) && $(AUTOMAKE) --foreign include/Makefile
     115
     116Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    44117        cd $(top_builddir) \
    45          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     118          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     119
     120
     121tags: TAGS
     122
     123ID: $(HEADERS) $(SOURCES) $(LISP)
     124        list='$(SOURCES) $(HEADERS)'; \
     125        unique=`for i in $$list; do echo $$i; done | \
     126          awk '    { files[$$0] = 1; } \
     127               END { for (i in files) print i; }'`; \
     128        here=`pwd` && cd $(srcdir) \
     129          && mkid -f$$here/ID $$unique $(LISP)
     130
     131TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     132        tags=; \
     133        here=`pwd`; \
     134        list='$(SOURCES) $(HEADERS)'; \
     135        unique=`for i in $$list; do echo $$i; done | \
     136          awk '    { files[$$0] = 1; } \
     137               END { for (i in files) print i; }'`; \
     138        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     139          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     140
     141mostlyclean-tags:
     142
     143clean-tags:
     144
     145distclean-tags:
     146        -rm -f TAGS ID
     147
     148maintainer-clean-tags:
     149
     150distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     151
     152subdir = include
     153
     154distdir: $(DISTFILES)
     155        here=`cd $(top_builddir) && pwd`; \
     156        top_distdir=`cd $(top_distdir) && pwd`; \
     157        distdir=`cd $(distdir) && pwd`; \
     158        cd $(top_srcdir) \
     159          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign include/Makefile
     160        @for file in $(DISTFILES); do \
     161          d=$(srcdir); \
     162          if test -d $$d/$$file; then \
     163            cp -pr $$d/$$file $(distdir)/$$file; \
     164          else \
     165            test -f $(distdir)/$$file \
     166            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     167            || cp -p $$d/$$file $(distdir)/$$file || :; \
     168          fi; \
     169        done
     170info-am:
     171info: info-am
     172dvi-am:
     173dvi: dvi-am
     174check-am: all-am
     175check: check-am
     176installcheck-am:
     177installcheck: installcheck-am
     178install-exec-am:
     179install-exec: install-exec-am
     180
     181install-data-am:
     182install-data: install-data-am
     183
     184install-am: all-am
     185        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     186install: install-am
     187uninstall-am:
     188uninstall: uninstall-am
     189all-am: Makefile $(HEADERS) all-local
     190all-redirect: all-am
     191install-strip:
     192        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     193installdirs:
     194
     195
     196mostlyclean-generic:
     197
     198clean-generic:
     199
     200distclean-generic:
     201        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     202        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     203
     204maintainer-clean-generic:
     205mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     206
     207mostlyclean: mostlyclean-am
     208
     209clean-am:  clean-tags clean-generic mostlyclean-am
     210
     211clean: clean-am
     212
     213distclean-am:  distclean-tags distclean-generic clean-am
     214
     215distclean: distclean-am
     216
     217maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     218                distclean-am
     219        @echo "This command is intended for maintainers to use;"
     220        @echo "it deletes files that may require special tools to rebuild."
     221
     222maintainer-clean: maintainer-clean-am
     223
     224.PHONY: tags mostlyclean-tags distclean-tags clean-tags \
     225maintainer-clean-tags distdir info-am info dvi-am dvi check check-am \
     226installcheck-am installcheck install-exec-am install-exec \
     227install-data-am install-data install-am install uninstall-am uninstall \
     228all-local all-redirect all-am all installdirs mostlyclean-generic \
     229distclean-generic clean-generic maintainer-clean-generic clean \
     230mostlyclean distclean maintainer-clean
     231
     232
     233$(PROJECT_INCLUDE)/hppa1.1:
     234        $(mkinstalldirs) $@
     235
     236$(PROJECT_INCLUDE)/hppa1.1/%.h: %.h
     237        $(INSTALL_DATA) $@ $<
     238
     239all-local: $(TMPINSTALL_FILES)
     240
     241debug-am:
     242debug: debug-am
     243.PHONY: debug debug-am
     244
     245profile-am:
     246profile: profile-am
     247.PHONY: profile profile-am
     248
     249preinstall-am: $(PREINSTALL_FILES)
     250preinstall: preinstall-am
     251.PHONY: preinstall preinstall-am
     252
     253depend-am:
     254depend: depend-am
     255.PHONY: depend depend-am
     256
     257# Tell versions [3.59,3.63) of GNU make to not export all variables.
     258# Otherwise a system limit (for SysV at least) may be exceeded.
     259.NOEXPORT:
  • c/src/lib/libcpu/hppa1.1/milli/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = hppa1.1/milli
     8top_builddir = ..
     9subdir = milli
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/hppa1.1/semaphore/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = hppa1.1/semaphore
     8top_builddir = ..
     9subdir = semaphore
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/hppa1.1/timer/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = hppa1.1/timer
     8top_builddir = ..
     9subdir = timer
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/i386/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15
     16SHELL = @SHELL@
     17
    618srcdir = @srcdir@
    719top_srcdir = @top_srcdir@
    8 top_builddir = ..
    9 subdir = i386
    10 
     20VPATH = @srcdir@
     21prefix = @prefix@
     22exec_prefix = @exec_prefix@
     23
     24bindir = @bindir@
     25sbindir = @sbindir@
     26libexecdir = @libexecdir@
     27datadir = @datadir@
     28sysconfdir = @sysconfdir@
     29sharedstatedir = @sharedstatedir@
     30localstatedir = @localstatedir@
     31libdir = @libdir@
     32infodir = @infodir@
     33mandir = @mandir@
     34includedir = @includedir@
     35oldincludedir = /usr/include
     36
     37DESTDIR =
     38
     39pkgdatadir = $(datadir)/@PACKAGE@
     40pkglibdir = $(libdir)/@PACKAGE@
     41pkgincludedir = $(includedir)/@PACKAGE@
     42
     43top_builddir = .
     44
     45ACLOCAL = @ACLOCAL@
     46AUTOCONF = @AUTOCONF@
     47AUTOMAKE = @AUTOMAKE@
     48AUTOHEADER = @AUTOHEADER@
     49
     50INSTALL = @INSTALL@
     51INSTALL_PROGRAM = @INSTALL_PROGRAM@
     52INSTALL_DATA = @INSTALL_DATA@
     53INSTALL_SCRIPT = @INSTALL_SCRIPT@
     54INSTALL_STRIP_FLAG =
     55transform = @program_transform_name@
     56
     57NORMAL_INSTALL = :
     58PRE_INSTALL = :
     59POST_INSTALL = :
     60NORMAL_UNINSTALL = :
     61PRE_UNINSTALL = :
     62POST_UNINSTALL = :
     63build_alias = @build_alias@
     64build_triplet = @build@
     65host_alias = @host_alias@
     66host_triplet = @host@
     67target_alias = @target_alias@
     68target_triplet = @target@
     69CC = @CC@
     70CC_FOR_TARGET = @CC_FOR_TARGET@
     71CPP = @CPP@
     72GCCSED = @GCCSED@
     73INSTALL_CHANGE = @INSTALL_CHANGE@
     74MAINT = @MAINT@
     75MAKEINFO = @MAKEINFO@
     76PACKAGE = @PACKAGE@
     77PACKHEX = @PACKHEX@
     78PROJECT_INCLUDE = @PROJECT_INCLUDE@
     79PROJECT_RELEASE = @PROJECT_RELEASE@
     80PROJECT_ROOT = @PROJECT_ROOT@
     81RTEMS_BSP = @RTEMS_BSP@
     82RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     83RTEMS_CPU = @RTEMS_CPU@
     84RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     85RTEMS_HOST = @RTEMS_HOST@
     86RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1187RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
     88RTEMS_TOPdir = @RTEMS_TOPdir@
     89VERSION = @VERSION@
     90
     91AUTOMAKE_OPTIONS = foreign 1.4
     92ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
     93
     94LIBNAME = libcpu
     95LIB = $(ARCH)/$(LIBNAME).a
    1596
    1697# C source names, if any, go here -- minus the .c
    17 C_PIECES = cpu displayCpu page
    18 C_FILES = $(C_PIECES:%=%.c)
    19 C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
    20 
    21 H_FILES = $(srcdir)/cpu.h $(srcdir)/registers.h $(srcdir)/cpuModel.h
     98C_FILES = cpu.c displayCpu.c page.c
     99C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
     100
     101H_FILES = cpu.h registers.h cpuModel.h
     102noinst_HEADERS = $(H_FILES)
    22103
    23104# Assembly source names, if any, go here -- minus the .s
    24 S_PIECES = cpu_asm cpuModel
    25 S_FILES = $(S_PIECES:%=%.S)
     105S_FILES = cpu_asm.S cpuModel.S
    26106S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
    27107
    28 SRCS = $(C_FILES) $(H_FILES)
    29108OBJS = $(C_O_FILES) $(S_O_FILES)
    30109
     110TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a
     111
     112
     113PREINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu     $(H_FILES:%=$(PROJECT_INCLUDE)/libcpu/%)
     114
     115
     116EXTRA_DIST = $(C_FILES) $(S_FILES)
     117ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
     118mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     119CONFIG_CLEAN_FILES =
     120HEADERS =  $(noinst_HEADERS)
     121
     122DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in
     123
     124
     125DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     126
     127TAR = gtar
     128GZIP_ENV = --best
     129all: all-redirect
     130.SUFFIXES:
     131$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/lib.am $(top_srcdir)/../../../../../automake/local.am
     132        cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
     133
     134Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
     135        cd $(top_builddir) \
     136          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
     137
     138$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
     139        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
     140
     141config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
     142        $(SHELL) ./config.status --recheck
     143$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
     144        cd $(srcdir) && $(AUTOCONF)
     145
     146tags: TAGS
     147
     148ID: $(HEADERS) $(SOURCES) $(LISP)
     149        list='$(SOURCES) $(HEADERS)'; \
     150        unique=`for i in $$list; do echo $$i; done | \
     151          awk '    { files[$$0] = 1; } \
     152               END { for (i in files) print i; }'`; \
     153        here=`pwd` && cd $(srcdir) \
     154          && mkid -f$$here/ID $$unique $(LISP)
     155
     156TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     157        tags=; \
     158        here=`pwd`; \
     159        list='$(SOURCES) $(HEADERS)'; \
     160        unique=`for i in $$list; do echo $$i; done | \
     161          awk '    { files[$$0] = 1; } \
     162               END { for (i in files) print i; }'`; \
     163        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     164          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     165
     166mostlyclean-tags:
     167
     168clean-tags:
     169
     170distclean-tags:
     171        -rm -f TAGS ID
     172
     173maintainer-clean-tags:
     174
     175distdir = $(PACKAGE)-$(VERSION)
     176top_distdir = $(distdir)
     177
     178# This target untars the dist file and tries a VPATH configuration.  Then
     179# it guarantees that the distribution is self-contained by making another
     180# tarfile.
     181distcheck: dist
     182        -rm -rf $(distdir)
     183        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
     184        mkdir $(distdir)/=build
     185        mkdir $(distdir)/=inst
     186        dc_install_base=`cd $(distdir)/=inst && pwd`; \
     187        cd $(distdir)/=build \
     188          && ../configure --srcdir=.. --prefix=$$dc_install_base \
     189          && $(MAKE) $(AM_MAKEFLAGS) \
     190          && $(MAKE) $(AM_MAKEFLAGS) dvi \
     191          && $(MAKE) $(AM_MAKEFLAGS) check \
     192          && $(MAKE) $(AM_MAKEFLAGS) install \
     193          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
     194          && $(MAKE) $(AM_MAKEFLAGS) dist
     195        -rm -rf $(distdir)
     196        @banner="$(distdir).tar.gz is ready for distribution"; \
     197        dashes=`echo "$$banner" | sed s/./=/g`; \
     198        echo "$$dashes"; \
     199        echo "$$banner"; \
     200        echo "$$dashes"
     201dist: distdir
     202        -chmod -R a+r $(distdir)
     203        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     204        -rm -rf $(distdir)
     205dist-all: distdir
     206        -chmod -R a+r $(distdir)
     207        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     208        -rm -rf $(distdir)
     209distdir: $(DISTFILES)
     210        -rm -rf $(distdir)
     211        mkdir $(distdir)
     212        -chmod 777 $(distdir)
     213        here=`cd $(top_builddir) && pwd`; \
     214        top_distdir=`cd $(distdir) && pwd`; \
     215        distdir=`cd $(distdir) && pwd`; \
     216        cd $(top_srcdir) \
     217          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
     218        @for file in $(DISTFILES); do \
     219          d=$(srcdir); \
     220          if test -d $$d/$$file; then \
     221            cp -pr $$d/$$file $(distdir)/$$file; \
     222          else \
     223            test -f $(distdir)/$$file \
     224            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     225            || cp -p $$d/$$file $(distdir)/$$file || :; \
     226          fi; \
     227        done
     228info-am:
     229info: info-am
     230dvi-am:
     231dvi: dvi-am
     232check-am: all-am
     233check: check-am
     234installcheck-am:
     235installcheck: installcheck-am
     236install-exec-am:
     237install-exec: install-exec-am
     238
     239install-data-am:
     240install-data: install-data-am
     241
     242install-am: all-am
     243        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     244install: install-am
     245uninstall-am:
     246uninstall: uninstall-am
     247all-am: Makefile $(HEADERS) all-local
     248all-redirect: all-am
     249install-strip:
     250        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     251installdirs:
     252
     253
     254mostlyclean-generic:
     255
     256clean-generic:
     257
     258distclean-generic:
     259        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     260        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     261
     262maintainer-clean-generic:
     263mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     264
     265mostlyclean: mostlyclean-am
     266
     267clean-am:  clean-tags clean-generic mostlyclean-am
     268
     269clean: clean-am
     270
     271distclean-am:  distclean-tags distclean-generic clean-am
     272
     273distclean: distclean-am
     274        -rm -f config.status
     275
     276maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     277                distclean-am
     278        @echo "This command is intended for maintainers to use;"
     279        @echo "it deletes files that may require special tools to rebuild."
     280
     281maintainer-clean: maintainer-clean-am
     282        -rm -f config.status
     283
     284.PHONY: tags mostlyclean-tags distclean-tags clean-tags \
     285maintainer-clean-tags distdir info-am info dvi-am dvi check check-am \
     286installcheck-am installcheck install-exec-am install-exec \
     287install-data-am install-data install-am install uninstall-am uninstall \
     288all-local all-redirect all-am all installdirs mostlyclean-generic \
     289distclean-generic clean-generic maintainer-clean-generic clean \
     290mostlyclean distclean maintainer-clean
     291
     292
    31293include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    32 include $(RTEMS_ROOT)/make/lib.cfg
    33 
    34 INSTALL_CHANGE = @INSTALL_CHANGE@
    35 mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
    36 
    37 INSTALLDIRS = $(PROJECT_INCLUDE)/libcpu
    38 
    39 $(INSTALLDIRS):
    40         @$(mkinstalldirs) $(INSTALLDIRS)
    41 
    42 LIB = ${ARCH}/libcpuspec.a
    43 
    44 #
    45 # (OPTIONAL) Add local stuff here using +=
    46 #
    47 
    48 DEFINES +=
    49 CPPFLAGS +=
    50 CFLAGS +=
    51 
    52 LD_PATHS +=
    53 LD_LIBS +=
    54 LDFLAGS +=
    55 
    56 #
    57 # Add your list of files to delete here.  The config files
    58 #  already know how to delete some stuff, so you may want
    59 #  to just run 'make clean' first to see what gets missed.
    60 #  'make clobber' already includes 'make clean'
    61 #
    62 
    63 CLEAN_ADDITIONS +=
    64 CLOBBER_ADDITIONS +=
    65 
    66 ${LIB}: ${SRCS} ${OBJS}
     294
     295include $(RTEMS_ROOT)/make/leaf.cfg
     296
     297define make-library
     298$(RM) $@
     299$(AR) $(ARFLAGS) $@ $^
     300$(RANLIB) $@
     301endef
     302
     303$(PROJECT_RELEASE)/lib:
     304        @$(mkinstalldirs) $@
     305
     306.PRECIOUS: $(LIB)
     307
     308$(LIB): ${OBJS}
    67309        $(make-library)
    68310
    69 preinstall :
    70         @$(mkinstalldirs) $(PROJECT_INCLUDE)/libcpu
    71         @$(INSTALL_CHANGE) -m 644 $(H_FILES) $(PROJECT_INCLUDE)/libcpu
    72 
    73 all: ${ARCH} $(SRCS) preinstall $(OBJ) $(LIB)
    74         cd wrapup; $(MAKE)
    75 
    76 # the .rel file built here will be put into libcpu.a by ../wrapup/Makefile
    77 install: all
    78 
    79 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    80         cd $(top_builddir) \
    81          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     311$(PROJECT_INCLUDE)/libcpu:
     312        $(mkinstalldirs) $@
     313
     314$(PROJECT_INCLUDE)/libcpu/%.h: %.h
     315        $(INSTALL_DATA) $< $@
     316
     317$(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB)
     318        $(INSTALL_DATA) $< $@
     319
     320all-local: ${ARCH} $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
     321
     322debug-am:
     323debug: debug-am
     324.PHONY: debug debug-am
     325
     326profile-am:
     327profile: profile-am
     328.PHONY: profile profile-am
     329
     330preinstall-am: $(PREINSTALL_FILES)
     331preinstall: preinstall-am
     332.PHONY: preinstall preinstall-am
     333
     334depend-am:
     335depend: depend-am
     336.PHONY: depend depend-am
     337
     338# Tell versions [3.59,3.63) of GNU make to not export all variables.
     339# Otherwise a system limit (for SysV at least) may be exceeded.
     340.NOEXPORT:
  • c/src/lib/libcpu/m68k/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15
     16SHELL = @SHELL@
     17
    618srcdir = @srcdir@
    719top_srcdir = @top_srcdir@
    8 top_builddir = ..
    9 subdir = m68k
    10 
     20VPATH = @srcdir@
     21prefix = @prefix@
     22exec_prefix = @exec_prefix@
     23
     24bindir = @bindir@
     25sbindir = @sbindir@
     26libexecdir = @libexecdir@
     27datadir = @datadir@
     28sysconfdir = @sysconfdir@
     29sharedstatedir = @sharedstatedir@
     30localstatedir = @localstatedir@
     31libdir = @libdir@
     32infodir = @infodir@
     33mandir = @mandir@
     34includedir = @includedir@
     35oldincludedir = /usr/include
     36
     37DESTDIR =
     38
     39pkgdatadir = $(datadir)/@PACKAGE@
     40pkglibdir = $(libdir)/@PACKAGE@
     41pkgincludedir = $(includedir)/@PACKAGE@
     42
     43top_builddir = .
     44
     45ACLOCAL = @ACLOCAL@
     46AUTOCONF = @AUTOCONF@
     47AUTOMAKE = @AUTOMAKE@
     48AUTOHEADER = @AUTOHEADER@
     49
     50INSTALL = @INSTALL@
     51INSTALL_PROGRAM = @INSTALL_PROGRAM@
     52INSTALL_DATA = @INSTALL_DATA@
     53INSTALL_SCRIPT = @INSTALL_SCRIPT@
     54INSTALL_STRIP_FLAG =
     55transform = @program_transform_name@
     56
     57NORMAL_INSTALL = :
     58PRE_INSTALL = :
     59POST_INSTALL = :
     60NORMAL_UNINSTALL = :
     61PRE_UNINSTALL = :
     62POST_UNINSTALL = :
     63build_alias = @build_alias@
     64build_triplet = @build@
     65host_alias = @host_alias@
     66host_triplet = @host@
     67target_alias = @target_alias@
     68target_triplet = @target@
     69CC = @CC@
     70CC_FOR_TARGET = @CC_FOR_TARGET@
     71CPP = @CPP@
     72GCCSED = @GCCSED@
     73INSTALL_CHANGE = @INSTALL_CHANGE@
     74MAINT = @MAINT@
     75MAKEINFO = @MAKEINFO@
     76PACKAGE = @PACKAGE@
     77PACKHEX = @PACKHEX@
     78PROJECT_INCLUDE = @PROJECT_INCLUDE@
     79PROJECT_RELEASE = @PROJECT_RELEASE@
     80PROJECT_ROOT = @PROJECT_ROOT@
     81RTEMS_BSP = @RTEMS_BSP@
     82RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     83RTEMS_CPU = @RTEMS_CPU@
     84RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     85RTEMS_HOST = @RTEMS_HOST@
     86RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1187RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    17 include $(RTEMS_ROOT)/make/directory.cfg
    18 
    19 INSTALL_CHANGE = @INSTALL_CHANGE@
    20 
    21 SUBDIRS = $(wildcard $(RTEMS_CPU_MODEL))
    22 
    23 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     88RTEMS_TOPdir = @RTEMS_TOPdir@
     89VERSION = @VERSION@
     90
     91AUTOMAKE_OPTIONS = foreign 1.4
     92ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
     93
     94SUBDIRS = m68040
     95ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
     96mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     97CONFIG_CLEAN_FILES =
     98DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in
     99
     100
     101DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     102
     103TAR = gtar
     104GZIP_ENV = --best
     105all: all-redirect
     106.SUFFIXES:
     107$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/subdirs.am $(top_srcdir)/../../../../../automake/local.am
     108        cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
     109
     110Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    24111        cd $(top_builddir) \
    25          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     112          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
     113
     114$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
     115        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
     116
     117config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
     118        $(SHELL) ./config.status --recheck
     119$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
     120        cd $(srcdir) && $(AUTOCONF)
     121
     122# This directory's subdirectories are mostly independent; you can cd
     123# into them and run `make' without going through this Makefile.
     124# To change the values of `make' variables: instead of editing Makefiles,
     125# (1) if the variable is set in `config.status', edit `config.status'
     126#     (which will cause the Makefiles to be regenerated when you run `make');
     127# (2) otherwise, pass the desired values on the `make' command line.
     128
     129@SET_MAKE@
     130
     131all-recursive install-data-recursive install-exec-recursive \
     132installdirs-recursive install-recursive uninstall-recursive  \
     133check-recursive installcheck-recursive info-recursive dvi-recursive:
     134        @set fnord $(MAKEFLAGS); amf=$$2; \
     135        dot_seen=no; \
     136        target=`echo $@ | sed s/-recursive//`; \
     137        list='$(SUBDIRS)'; for subdir in $$list; do \
     138          echo "Making $$target in $$subdir"; \
     139          if test "$$subdir" = "."; then \
     140            dot_seen=yes; \
     141            local_target="$$target-am"; \
     142          else \
     143            local_target="$$target"; \
     144          fi; \
     145          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     146           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     147        done; \
     148        if test "$$dot_seen" = "no"; then \
     149          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     150        fi; test -z "$$fail"
     151
     152mostlyclean-recursive clean-recursive distclean-recursive \
     153maintainer-clean-recursive:
     154        @set fnord $(MAKEFLAGS); amf=$$2; \
     155        dot_seen=no; \
     156        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
     157          rev="$$subdir $$rev"; \
     158          test "$$subdir" = "." && dot_seen=yes; \
     159        done; \
     160        test "$$dot_seen" = "no" && rev=". $$rev"; \
     161        target=`echo $@ | sed s/-recursive//`; \
     162        for subdir in $$rev; do \
     163          echo "Making $$target in $$subdir"; \
     164          if test "$$subdir" = "."; then \
     165            local_target="$$target-am"; \
     166          else \
     167            local_target="$$target"; \
     168          fi; \
     169          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     170           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     171        done && test -z "$$fail"
     172tags-recursive:
     173        list='$(SUBDIRS)'; for subdir in $$list; do \
     174          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
     175        done
     176
     177tags: TAGS
     178
     179ID: $(HEADERS) $(SOURCES) $(LISP)
     180        list='$(SOURCES) $(HEADERS)'; \
     181        unique=`for i in $$list; do echo $$i; done | \
     182          awk '    { files[$$0] = 1; } \
     183               END { for (i in files) print i; }'`; \
     184        here=`pwd` && cd $(srcdir) \
     185          && mkid -f$$here/ID $$unique $(LISP)
     186
     187TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     188        tags=; \
     189        here=`pwd`; \
     190        list='$(SUBDIRS)'; for subdir in $$list; do \
     191   if test "$$subdir" = .; then :; else \
     192            test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
     193   fi; \
     194        done; \
     195        list='$(SOURCES) $(HEADERS)'; \
     196        unique=`for i in $$list; do echo $$i; done | \
     197          awk '    { files[$$0] = 1; } \
     198               END { for (i in files) print i; }'`; \
     199        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     200          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     201
     202mostlyclean-tags:
     203
     204clean-tags:
     205
     206distclean-tags:
     207        -rm -f TAGS ID
     208
     209maintainer-clean-tags:
     210
     211distdir = $(PACKAGE)-$(VERSION)
     212top_distdir = $(distdir)
     213
     214# This target untars the dist file and tries a VPATH configuration.  Then
     215# it guarantees that the distribution is self-contained by making another
     216# tarfile.
     217distcheck: dist
     218        -rm -rf $(distdir)
     219        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
     220        mkdir $(distdir)/=build
     221        mkdir $(distdir)/=inst
     222        dc_install_base=`cd $(distdir)/=inst && pwd`; \
     223        cd $(distdir)/=build \
     224          && ../configure --srcdir=.. --prefix=$$dc_install_base \
     225          && $(MAKE) $(AM_MAKEFLAGS) \
     226          && $(MAKE) $(AM_MAKEFLAGS) dvi \
     227          && $(MAKE) $(AM_MAKEFLAGS) check \
     228          && $(MAKE) $(AM_MAKEFLAGS) install \
     229          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
     230          && $(MAKE) $(AM_MAKEFLAGS) dist
     231        -rm -rf $(distdir)
     232        @banner="$(distdir).tar.gz is ready for distribution"; \
     233        dashes=`echo "$$banner" | sed s/./=/g`; \
     234        echo "$$dashes"; \
     235        echo "$$banner"; \
     236        echo "$$dashes"
     237dist: distdir
     238        -chmod -R a+r $(distdir)
     239        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     240        -rm -rf $(distdir)
     241dist-all: distdir
     242        -chmod -R a+r $(distdir)
     243        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     244        -rm -rf $(distdir)
     245distdir: $(DISTFILES)
     246        -rm -rf $(distdir)
     247        mkdir $(distdir)
     248        -chmod 777 $(distdir)
     249        here=`cd $(top_builddir) && pwd`; \
     250        top_distdir=`cd $(distdir) && pwd`; \
     251        distdir=`cd $(distdir) && pwd`; \
     252        cd $(top_srcdir) \
     253          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
     254        @for file in $(DISTFILES); do \
     255          d=$(srcdir); \
     256          if test -d $$d/$$file; then \
     257            cp -pr $$d/$$file $(distdir)/$$file; \
     258          else \
     259            test -f $(distdir)/$$file \
     260            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     261            || cp -p $$d/$$file $(distdir)/$$file || :; \
     262          fi; \
     263        done
     264        for subdir in $(SUBDIRS); do \
     265          if test "$$subdir" = .; then :; else \
     266            test -d $(distdir)/$$subdir \
     267            || mkdir $(distdir)/$$subdir \
     268            || exit 1; \
     269            chmod 777 $(distdir)/$$subdir; \
     270            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
     271              || exit 1; \
     272          fi; \
     273        done
     274info-am:
     275info: info-recursive
     276dvi-am:
     277dvi: dvi-recursive
     278check-am: all-am
     279check: check-recursive
     280installcheck-am:
     281installcheck: installcheck-recursive
     282install-exec-am:
     283install-exec: install-exec-recursive
     284
     285install-data-am:
     286install-data: install-data-recursive
     287
     288install-am: all-am
     289        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     290install: install-recursive
     291uninstall-am:
     292uninstall: uninstall-recursive
     293all-am: Makefile
     294all-redirect: all-recursive
     295install-strip:
     296        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     297installdirs: installdirs-recursive
     298installdirs-am:
     299
     300
     301mostlyclean-generic:
     302
     303clean-generic:
     304
     305distclean-generic:
     306        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     307        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     308
     309maintainer-clean-generic:
     310mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     311
     312mostlyclean: mostlyclean-recursive
     313
     314clean-am:  clean-tags clean-generic mostlyclean-am
     315
     316clean: clean-recursive
     317
     318distclean-am:  distclean-tags distclean-generic clean-am
     319
     320distclean: distclean-recursive
     321        -rm -f config.status
     322
     323maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     324                distclean-am
     325        @echo "This command is intended for maintainers to use;"
     326        @echo "it deletes files that may require special tools to rebuild."
     327
     328maintainer-clean: maintainer-clean-recursive
     329        -rm -f config.status
     330
     331.PHONY: install-data-recursive uninstall-data-recursive \
     332install-exec-recursive uninstall-exec-recursive installdirs-recursive \
     333uninstalldirs-recursive all-recursive check-recursive \
     334installcheck-recursive info-recursive dvi-recursive \
     335mostlyclean-recursive distclean-recursive clean-recursive \
     336maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
     337distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
     338dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
     339install-exec install-data-am install-data install-am install \
     340uninstall-am uninstall all-redirect all-am all installdirs-am \
     341installdirs mostlyclean-generic distclean-generic clean-generic \
     342maintainer-clean-generic clean mostlyclean distclean maintainer-clean
     343
     344
     345depend-recursive \
     346preinstall-recursive \
     347debug-recursive \
     348profile-recursive:
     349        @set fnord $(MAKEFLAGS); amf=$$2; \
     350        dot_seen=no; \
     351        target=`echo $@ | sed s/-recursive//`; \
     352        list='$(SUBDIRS)'; for subdir in $$list; do \
     353          echo "Making $$target in $$subdir"; \
     354          if test "$$subdir" = "."; then \
     355            dot_seen=yes; \
     356            local_target="$$target-am"; \
     357          else \
     358            local_target="$$target"; \
     359          fi; \
     360          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     361           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     362        done; \
     363        if test "$$dot_seen" = "no"; then \
     364          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     365        fi; test -z "$$fail"
     366
     367debug: debug-recursive
     368.PHONY: debug-recursive
     369
     370profile: profile-recursive
     371.PHONY: profile-recursive
     372
     373preinstall: preinstall-recursive
     374.PHONY: preinstall-recursive
     375
     376depend: depend-recursive
     377.PHONY: depend-recursive
     378
     379debug-am:
     380debug: debug-am
     381.PHONY: debug debug-am
     382
     383profile-am:
     384profile: profile-am
     385.PHONY: profile profile-am
     386
     387preinstall-am: $(PREINSTALL_FILES)
     388preinstall: preinstall-am
     389.PHONY: preinstall preinstall-am
     390
     391depend-am:
     392depend: depend-am
     393.PHONY: depend depend-am
     394
     395# Tell versions [3.59,3.63) of GNU make to not export all variables.
     396# Otherwise a system limit (for SysV at least) may be exceeded.
     397.NOEXPORT:
  • c/src/lib/libcpu/m68k/m68040/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15
     16SHELL = @SHELL@
     17
    618srcdir = @srcdir@
    719top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = m68k/m68040
    10 
     20VPATH = @srcdir@
     21prefix = @prefix@
     22exec_prefix = @exec_prefix@
     23
     24bindir = @bindir@
     25sbindir = @sbindir@
     26libexecdir = @libexecdir@
     27datadir = @datadir@
     28sysconfdir = @sysconfdir@
     29sharedstatedir = @sharedstatedir@
     30localstatedir = @localstatedir@
     31libdir = @libdir@
     32infodir = @infodir@
     33mandir = @mandir@
     34includedir = @includedir@
     35oldincludedir = /usr/include
     36
     37DESTDIR =
     38
     39pkgdatadir = $(datadir)/@PACKAGE@
     40pkglibdir = $(libdir)/@PACKAGE@
     41pkgincludedir = $(includedir)/@PACKAGE@
     42
     43top_builddir = ..
     44
     45ACLOCAL = @ACLOCAL@
     46AUTOCONF = @AUTOCONF@
     47AUTOMAKE = @AUTOMAKE@
     48AUTOHEADER = @AUTOHEADER@
     49
     50INSTALL = @INSTALL@
     51INSTALL_PROGRAM = @INSTALL_PROGRAM@
     52INSTALL_DATA = @INSTALL_DATA@
     53INSTALL_SCRIPT = @INSTALL_SCRIPT@
     54INSTALL_STRIP_FLAG =
     55transform = @program_transform_name@
     56
     57NORMAL_INSTALL = :
     58PRE_INSTALL = :
     59POST_INSTALL = :
     60NORMAL_UNINSTALL = :
     61PRE_UNINSTALL = :
     62POST_UNINSTALL = :
     63build_alias = @build_alias@
     64build_triplet = @build@
     65host_alias = @host_alias@
     66host_triplet = @host@
     67target_alias = @target_alias@
     68target_triplet = @target@
     69CC = @CC@
     70CC_FOR_TARGET = @CC_FOR_TARGET@
     71CPP = @CPP@
     72GCCSED = @GCCSED@
     73INSTALL_CHANGE = @INSTALL_CHANGE@
     74MAINT = @MAINT@
     75MAKEINFO = @MAKEINFO@
     76PACKAGE = @PACKAGE@
     77PACKHEX = @PACKHEX@
     78PROJECT_INCLUDE = @PROJECT_INCLUDE@
     79PROJECT_RELEASE = @PROJECT_RELEASE@
     80PROJECT_ROOT = @PROJECT_ROOT@
     81RTEMS_BSP = @RTEMS_BSP@
     82RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     83RTEMS_CPU = @RTEMS_CPU@
     84RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     85RTEMS_HOST = @RTEMS_HOST@
     86RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1187RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    17 include $(RTEMS_ROOT)/make/directory.cfg
    18 
    19 INSTALL_CHANGE = @INSTALL_CHANGE@
     88RTEMS_TOPdir = @RTEMS_TOPdir@
     89VERSION = @VERSION@
     90
     91AUTOMAKE_OPTIONS = foreign 1.4
    2092
    2193SUBDIRS = fpsp
    22 
    23 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     94mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     95CONFIG_CLEAN_FILES =
     96DIST_COMMON =  Makefile.am Makefile.in
     97
     98
     99DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     100
     101TAR = gtar
     102GZIP_ENV = --best
     103all: all-redirect
     104.SUFFIXES:
     105$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/subdirs.am $(top_srcdir)/../../../../../automake/local.am
     106        cd $(top_srcdir) && $(AUTOMAKE) --foreign m68040/Makefile
     107
     108Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    24109        cd $(top_builddir) \
    25          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     110          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     111
     112
     113# This directory's subdirectories are mostly independent; you can cd
     114# into them and run `make' without going through this Makefile.
     115# To change the values of `make' variables: instead of editing Makefiles,
     116# (1) if the variable is set in `config.status', edit `config.status'
     117#     (which will cause the Makefiles to be regenerated when you run `make');
     118# (2) otherwise, pass the desired values on the `make' command line.
     119
     120@SET_MAKE@
     121
     122all-recursive install-data-recursive install-exec-recursive \
     123installdirs-recursive install-recursive uninstall-recursive  \
     124check-recursive installcheck-recursive info-recursive dvi-recursive:
     125        @set fnord $(MAKEFLAGS); amf=$$2; \
     126        dot_seen=no; \
     127        target=`echo $@ | sed s/-recursive//`; \
     128        list='$(SUBDIRS)'; for subdir in $$list; do \
     129          echo "Making $$target in $$subdir"; \
     130          if test "$$subdir" = "."; then \
     131            dot_seen=yes; \
     132            local_target="$$target-am"; \
     133          else \
     134            local_target="$$target"; \
     135          fi; \
     136          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     137           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     138        done; \
     139        if test "$$dot_seen" = "no"; then \
     140          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     141        fi; test -z "$$fail"
     142
     143mostlyclean-recursive clean-recursive distclean-recursive \
     144maintainer-clean-recursive:
     145        @set fnord $(MAKEFLAGS); amf=$$2; \
     146        dot_seen=no; \
     147        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
     148          rev="$$subdir $$rev"; \
     149          test "$$subdir" = "." && dot_seen=yes; \
     150        done; \
     151        test "$$dot_seen" = "no" && rev=". $$rev"; \
     152        target=`echo $@ | sed s/-recursive//`; \
     153        for subdir in $$rev; do \
     154          echo "Making $$target in $$subdir"; \
     155          if test "$$subdir" = "."; then \
     156            local_target="$$target-am"; \
     157          else \
     158            local_target="$$target"; \
     159          fi; \
     160          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     161           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     162        done && test -z "$$fail"
     163tags-recursive:
     164        list='$(SUBDIRS)'; for subdir in $$list; do \
     165          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
     166        done
     167
     168tags: TAGS
     169
     170ID: $(HEADERS) $(SOURCES) $(LISP)
     171        list='$(SOURCES) $(HEADERS)'; \
     172        unique=`for i in $$list; do echo $$i; done | \
     173          awk '    { files[$$0] = 1; } \
     174               END { for (i in files) print i; }'`; \
     175        here=`pwd` && cd $(srcdir) \
     176          && mkid -f$$here/ID $$unique $(LISP)
     177
     178TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     179        tags=; \
     180        here=`pwd`; \
     181        list='$(SUBDIRS)'; for subdir in $$list; do \
     182   if test "$$subdir" = .; then :; else \
     183            test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
     184   fi; \
     185        done; \
     186        list='$(SOURCES) $(HEADERS)'; \
     187        unique=`for i in $$list; do echo $$i; done | \
     188          awk '    { files[$$0] = 1; } \
     189               END { for (i in files) print i; }'`; \
     190        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     191          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     192
     193mostlyclean-tags:
     194
     195clean-tags:
     196
     197distclean-tags:
     198        -rm -f TAGS ID
     199
     200maintainer-clean-tags:
     201
     202distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     203
     204subdir = m68040
     205
     206distdir: $(DISTFILES)
     207        here=`cd $(top_builddir) && pwd`; \
     208        top_distdir=`cd $(top_distdir) && pwd`; \
     209        distdir=`cd $(distdir) && pwd`; \
     210        cd $(top_srcdir) \
     211          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign m68040/Makefile
     212        @for file in $(DISTFILES); do \
     213          d=$(srcdir); \
     214          if test -d $$d/$$file; then \
     215            cp -pr $$d/$$file $(distdir)/$$file; \
     216          else \
     217            test -f $(distdir)/$$file \
     218            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     219            || cp -p $$d/$$file $(distdir)/$$file || :; \
     220          fi; \
     221        done
     222        for subdir in $(SUBDIRS); do \
     223          if test "$$subdir" = .; then :; else \
     224            test -d $(distdir)/$$subdir \
     225            || mkdir $(distdir)/$$subdir \
     226            || exit 1; \
     227            chmod 777 $(distdir)/$$subdir; \
     228            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
     229              || exit 1; \
     230          fi; \
     231        done
     232info-am:
     233info: info-recursive
     234dvi-am:
     235dvi: dvi-recursive
     236check-am: all-am
     237check: check-recursive
     238installcheck-am:
     239installcheck: installcheck-recursive
     240install-exec-am:
     241install-exec: install-exec-recursive
     242
     243install-data-am:
     244install-data: install-data-recursive
     245
     246install-am: all-am
     247        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     248install: install-recursive
     249uninstall-am:
     250uninstall: uninstall-recursive
     251all-am: Makefile
     252all-redirect: all-recursive
     253install-strip:
     254        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     255installdirs: installdirs-recursive
     256installdirs-am:
     257
     258
     259mostlyclean-generic:
     260
     261clean-generic:
     262
     263distclean-generic:
     264        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     265        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     266
     267maintainer-clean-generic:
     268mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     269
     270mostlyclean: mostlyclean-recursive
     271
     272clean-am:  clean-tags clean-generic mostlyclean-am
     273
     274clean: clean-recursive
     275
     276distclean-am:  distclean-tags distclean-generic clean-am
     277
     278distclean: distclean-recursive
     279
     280maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     281                distclean-am
     282        @echo "This command is intended for maintainers to use;"
     283        @echo "it deletes files that may require special tools to rebuild."
     284
     285maintainer-clean: maintainer-clean-recursive
     286
     287.PHONY: install-data-recursive uninstall-data-recursive \
     288install-exec-recursive uninstall-exec-recursive installdirs-recursive \
     289uninstalldirs-recursive all-recursive check-recursive \
     290installcheck-recursive info-recursive dvi-recursive \
     291mostlyclean-recursive distclean-recursive clean-recursive \
     292maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
     293distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
     294dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
     295install-exec install-data-am install-data install-am install \
     296uninstall-am uninstall all-redirect all-am all installdirs-am \
     297installdirs mostlyclean-generic distclean-generic clean-generic \
     298maintainer-clean-generic clean mostlyclean distclean maintainer-clean
     299
     300
     301depend-recursive \
     302preinstall-recursive \
     303debug-recursive \
     304profile-recursive:
     305        @set fnord $(MAKEFLAGS); amf=$$2; \
     306        dot_seen=no; \
     307        target=`echo $@ | sed s/-recursive//`; \
     308        list='$(SUBDIRS)'; for subdir in $$list; do \
     309          echo "Making $$target in $$subdir"; \
     310          if test "$$subdir" = "."; then \
     311            dot_seen=yes; \
     312            local_target="$$target-am"; \
     313          else \
     314            local_target="$$target"; \
     315          fi; \
     316          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     317           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     318        done; \
     319        if test "$$dot_seen" = "no"; then \
     320          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     321        fi; test -z "$$fail"
     322
     323debug: debug-recursive
     324.PHONY: debug-recursive
     325
     326profile: profile-recursive
     327.PHONY: profile-recursive
     328
     329preinstall: preinstall-recursive
     330.PHONY: preinstall-recursive
     331
     332depend: depend-recursive
     333.PHONY: depend-recursive
     334
     335debug-am:
     336debug: debug-am
     337.PHONY: debug debug-am
     338
     339profile-am:
     340profile: profile-am
     341.PHONY: profile profile-am
     342
     343preinstall-am: $(PREINSTALL_FILES)
     344preinstall: preinstall-am
     345.PHONY: preinstall preinstall-am
     346
     347depend-am:
     348depend: depend-am
     349.PHONY: depend depend-am
     350
     351# Tell versions [3.59,3.63) of GNU make to not export all variables.
     352# Otherwise a system limit (for SysV at least) may be exceeded.
     353.NOEXPORT:
  • c/src/lib/libcpu/m68k/m68040/fpsp/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15
     16SHELL = @SHELL@
     17
    618srcdir = @srcdir@
    719top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = m68k/m68040/fpsp
    10 
     20VPATH = @srcdir@
     21prefix = @prefix@
     22exec_prefix = @exec_prefix@
     23
     24bindir = @bindir@
     25sbindir = @sbindir@
     26libexecdir = @libexecdir@
     27datadir = @datadir@
     28sysconfdir = @sysconfdir@
     29sharedstatedir = @sharedstatedir@
     30localstatedir = @localstatedir@
     31libdir = @libdir@
     32infodir = @infodir@
     33mandir = @mandir@
     34includedir = @includedir@
     35oldincludedir = /usr/include
     36
     37DESTDIR =
     38
     39pkgdatadir = $(datadir)/@PACKAGE@
     40pkglibdir = $(libdir)/@PACKAGE@
     41pkgincludedir = $(includedir)/@PACKAGE@
     42
     43top_builddir = ../..
     44
     45ACLOCAL = @ACLOCAL@
     46AUTOCONF = @AUTOCONF@
     47AUTOMAKE = @AUTOMAKE@
     48AUTOHEADER = @AUTOHEADER@
     49
     50INSTALL = @INSTALL@
     51INSTALL_PROGRAM = @INSTALL_PROGRAM@
     52INSTALL_DATA = @INSTALL_DATA@
     53INSTALL_SCRIPT = @INSTALL_SCRIPT@
     54INSTALL_STRIP_FLAG =
     55transform = @program_transform_name@
     56
     57NORMAL_INSTALL = :
     58PRE_INSTALL = :
     59POST_INSTALL = :
     60NORMAL_UNINSTALL = :
     61PRE_UNINSTALL = :
     62POST_UNINSTALL = :
     63build_alias = @build_alias@
     64build_triplet = @build@
     65host_alias = @host_alias@
     66host_triplet = @host@
     67target_alias = @target_alias@
     68target_triplet = @target@
     69CC = @CC@
     70CC_FOR_TARGET = @CC_FOR_TARGET@
     71CPP = @CPP@
     72GCCSED = @GCCSED@
     73INSTALL_CHANGE = @INSTALL_CHANGE@
     74MAINT = @MAINT@
     75MAKEINFO = @MAKEINFO@
     76PACKAGE = @PACKAGE@
     77PACKHEX = @PACKHEX@
     78PROJECT_INCLUDE = @PROJECT_INCLUDE@
     79PROJECT_RELEASE = @PROJECT_RELEASE@
     80PROJECT_ROOT = @PROJECT_ROOT@
     81RTEMS_BSP = @RTEMS_BSP@
     82RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     83RTEMS_CPU = @RTEMS_CPU@
     84RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     85RTEMS_HOST = @RTEMS_HOST@
     86RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1187RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
     88RTEMS_TOPdir = @RTEMS_TOPdir@
     89VERSION = @VERSION@
     90
     91AUTOMAKE_OPTIONS = foreign 1.4
    1592
    1693PGM = ${ARCH}/fpsp.rel
    1794
     95TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
     96
    1897# C source names, if any, go here -- minus the .c
    19 C_PIECES = rtems_fpsp
    20 C_FILES = $(C_PIECES:%=%.c)
    21 C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
    22 
    23 H_FILES =
     98C_FILES = rtems_fpsp.c
     99C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
     100
     101H_FILES = fpsp.defs
     102noinst_HEADERS = fpsp.defs
    24103
    25104# Assembly source names, if any, go here -- minus the .S
    26 S_PIECES = bindec binstr bugfix decbin do_func gen_except get_op kernel_ex \
    27     res_func round rtems_skel sacos sasin satan satanh scale scosh setox \
    28     sgetem sint slog2 slogn smovecr srem_mod ssin ssinh stan stanh sto_res \
    29     stwotox tbldo util x_bsun x_fline x_operr x_ovfl x_snan x_store x_unfl \
    30     x_unimp x_unsupp
    31 S_FILES = $(S_PIECES:%=%.S)
     105S_FILES = bindec.S binstr.S bugfix.S decbin.S do_func.S gen_except.S     get_op.S kernel_ex.S res_func.S round.S rtems_skel.S sacos.S sasin.S     satan.S satanh.S scale.S scosh.S setox.S sgetem.S sint.S slog2.S slogn.S     smovecr.S srem_mod.S ssin.S ssinh.S stan.S stanh.S sto_res.S stwotox.S     tbldo.S util.S x_bsun.S x_fline.S x_operr.S x_ovfl.S x_snan.S x_store.S     x_unfl.S x_unimp.S x_unsupp.S
     106
    32107S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
    33108
    34 SRCS = $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
    35 OBJS = $(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
    36 
    37 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    38 include $(RTEMS_ROOT)/make/leaf.cfg
    39 
    40 INSTALL_CHANGE = @INSTALL_CHANGE@
     109OBJS = $(C_O_FILES) $(S_O_FILES)
    41110
    42111#
     
    44113#
    45114
    46 DEFINES +=
    47 CPPFLAGS +=
    48 CFLAGS += $(CFLAGS_OS_V)
    49 
    50 LD_PATHS +=
    51 LD_LIBS +=
    52 LDFLAGS +=
    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 
    61 CLEAN_ADDITIONS +=
    62 CLOBBER_ADDITIONS +=
     115AM_CFLAGS =  $(CFLAGS_OS_V)
     116
     117EXTRA_DIST = $(S_FILES) $(C_FILES)
     118mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     119CONFIG_CLEAN_FILES =
     120HEADERS =  $(noinst_HEADERS)
     121
     122DIST_COMMON =  README Makefile.am Makefile.in
     123
     124
     125DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     126
     127TAR = gtar
     128GZIP_ENV = --best
     129all: all-redirect
     130.SUFFIXES:
     131$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/lib.am $(top_srcdir)/../../../../../automake/local.am
     132        cd $(top_srcdir) && $(AUTOMAKE) --foreign m68040/fpsp/Makefile
     133
     134Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
     135        cd $(top_builddir) \
     136          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     137
     138
     139tags: TAGS
     140
     141ID: $(HEADERS) $(SOURCES) $(LISP)
     142        list='$(SOURCES) $(HEADERS)'; \
     143        unique=`for i in $$list; do echo $$i; done | \
     144          awk '    { files[$$0] = 1; } \
     145               END { for (i in files) print i; }'`; \
     146        here=`pwd` && cd $(srcdir) \
     147          && mkid -f$$here/ID $$unique $(LISP)
     148
     149TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     150        tags=; \
     151        here=`pwd`; \
     152        list='$(SOURCES) $(HEADERS)'; \
     153        unique=`for i in $$list; do echo $$i; done | \
     154          awk '    { files[$$0] = 1; } \
     155               END { for (i in files) print i; }'`; \
     156        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     157          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     158
     159mostlyclean-tags:
     160
     161clean-tags:
     162
     163distclean-tags:
     164        -rm -f TAGS ID
     165
     166maintainer-clean-tags:
     167
     168distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     169
     170subdir = m68040/fpsp
     171
     172distdir: $(DISTFILES)
     173        here=`cd $(top_builddir) && pwd`; \
     174        top_distdir=`cd $(top_distdir) && pwd`; \
     175        distdir=`cd $(distdir) && pwd`; \
     176        cd $(top_srcdir) \
     177          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign m68040/fpsp/Makefile
     178        @for file in $(DISTFILES); do \
     179          d=$(srcdir); \
     180          if test -d $$d/$$file; then \
     181            cp -pr $$d/$$file $(distdir)/$$file; \
     182          else \
     183            test -f $(distdir)/$$file \
     184            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     185            || cp -p $$d/$$file $(distdir)/$$file || :; \
     186          fi; \
     187        done
     188info-am:
     189info: info-am
     190dvi-am:
     191dvi: dvi-am
     192check-am: all-am
     193check: check-am
     194installcheck-am:
     195installcheck: installcheck-am
     196install-exec-am:
     197install-exec: install-exec-am
     198
     199install-data-am:
     200install-data: install-data-am
     201
     202install-am: all-am
     203        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     204install: install-am
     205uninstall-am:
     206uninstall: uninstall-am
     207all-am: Makefile $(HEADERS) all-local
     208all-redirect: all-am
     209install-strip:
     210        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     211installdirs:
     212
     213
     214mostlyclean-generic:
     215
     216clean-generic:
     217
     218distclean-generic:
     219        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     220        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     221
     222maintainer-clean-generic:
     223mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     224
     225mostlyclean: mostlyclean-am
     226
     227clean-am:  clean-tags clean-generic mostlyclean-am
     228
     229clean: clean-am
     230
     231distclean-am:  distclean-tags distclean-generic clean-am
     232
     233distclean: distclean-am
     234
     235maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     236                distclean-am
     237        @echo "This command is intended for maintainers to use;"
     238        @echo "it deletes files that may require special tools to rebuild."
     239
     240maintainer-clean: maintainer-clean-am
     241
     242.PHONY: tags mostlyclean-tags distclean-tags clean-tags \
     243maintainer-clean-tags distdir info-am info dvi-am dvi check check-am \
     244installcheck-am installcheck install-exec-am install-exec \
     245install-data-am install-data install-am install uninstall-am uninstall \
     246all-local all-redirect all-am all installdirs mostlyclean-generic \
     247distclean-generic clean-generic maintainer-clean-generic clean \
     248mostlyclean distclean maintainer-clean
     249
     250
     251include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
     252
     253include $(RTEMS_ROOT)/make/leaf.cfg
     254
     255define make-library
     256$(RM) $@
     257$(AR) $(ARFLAGS) $@ $^
     258$(RANLIB) $@
     259endef
     260
     261$(PROJECT_RELEASE)/lib:
     262        @$(mkinstalldirs) $@
     263
     264.PRECIOUS: $(LIB)
    63265
    64266$(PGM): ${OBJS}
    65267        $(make-rel)
    66268
    67 all: ${ARCH} $(SRCS) $(PGM)
    68 
    69 install: all
    70 
    71 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    72         cd $(top_builddir) \
    73          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     269@m68040_TRUE@all-local: ${ARCH} $(PGM)
     270@m68040_FALSE@all-local:
     271
     272debug-am:
     273debug: debug-am
     274.PHONY: debug debug-am
     275
     276profile-am:
     277profile: profile-am
     278.PHONY: profile profile-am
     279
     280preinstall-am: $(PREINSTALL_FILES)
     281preinstall: preinstall-am
     282.PHONY: preinstall preinstall-am
     283
     284depend-am:
     285depend: depend-am
     286.PHONY: depend depend-am
     287
     288# Tell versions [3.59,3.63) of GNU make to not export all variables.
     289# Otherwise a system limit (for SysV at least) may be exceeded.
     290.NOEXPORT:
  • c/src/lib/libcpu/mips64orion/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15
     16SHELL = @SHELL@
     17
    618srcdir = @srcdir@
    719top_srcdir = @top_srcdir@
    8 top_builddir = ..
    9 subdir = mips64orion
    10 
     20VPATH = @srcdir@
     21prefix = @prefix@
     22exec_prefix = @exec_prefix@
     23
     24bindir = @bindir@
     25sbindir = @sbindir@
     26libexecdir = @libexecdir@
     27datadir = @datadir@
     28sysconfdir = @sysconfdir@
     29sharedstatedir = @sharedstatedir@
     30localstatedir = @localstatedir@
     31libdir = @libdir@
     32infodir = @infodir@
     33mandir = @mandir@
     34includedir = @includedir@
     35oldincludedir = /usr/include
     36
     37DESTDIR =
     38
     39pkgdatadir = $(datadir)/@PACKAGE@
     40pkglibdir = $(libdir)/@PACKAGE@
     41pkgincludedir = $(includedir)/@PACKAGE@
     42
     43top_builddir = .
     44
     45ACLOCAL = @ACLOCAL@
     46AUTOCONF = @AUTOCONF@
     47AUTOMAKE = @AUTOMAKE@
     48AUTOHEADER = @AUTOHEADER@
     49
     50INSTALL = @INSTALL@
     51INSTALL_PROGRAM = @INSTALL_PROGRAM@
     52INSTALL_DATA = @INSTALL_DATA@
     53INSTALL_SCRIPT = @INSTALL_SCRIPT@
     54INSTALL_STRIP_FLAG =
     55transform = @program_transform_name@
     56
     57NORMAL_INSTALL = :
     58PRE_INSTALL = :
     59POST_INSTALL = :
     60NORMAL_UNINSTALL = :
     61PRE_UNINSTALL = :
     62POST_UNINSTALL = :
     63build_alias = @build_alias@
     64build_triplet = @build@
     65host_alias = @host_alias@
     66host_triplet = @host@
     67target_alias = @target_alias@
     68target_triplet = @target@
     69CC = @CC@
     70CC_FOR_TARGET = @CC_FOR_TARGET@
     71CPP = @CPP@
     72GCCSED = @GCCSED@
     73INSTALL_CHANGE = @INSTALL_CHANGE@
     74MAINT = @MAINT@
     75MAKEINFO = @MAKEINFO@
     76PACKAGE = @PACKAGE@
     77PACKHEX = @PACKHEX@
     78PROJECT_INCLUDE = @PROJECT_INCLUDE@
     79PROJECT_RELEASE = @PROJECT_RELEASE@
     80PROJECT_ROOT = @PROJECT_ROOT@
     81RTEMS_BSP = @RTEMS_BSP@
     82RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     83RTEMS_CPU = @RTEMS_CPU@
     84RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     85RTEMS_HOST = @RTEMS_HOST@
     86RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1187RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    17 include $(RTEMS_ROOT)/make/directory.cfg
    18 
    19 INSTALL_CHANGE = @INSTALL_CHANGE@
    20 
    21 SUBDIRS = include clock timer
    22 
    23 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     88RTEMS_TOPdir = @RTEMS_TOPdir@
     89VERSION = @VERSION@
     90
     91AUTOMAKE_OPTIONS = foreign 1.4
     92ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
     93
     94SUBDIRS = clock timer
     95ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
     96mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     97CONFIG_CLEAN_FILES =
     98DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in
     99
     100
     101DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     102
     103TAR = gtar
     104GZIP_ENV = --best
     105all: all-redirect
     106.SUFFIXES:
     107$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/subdirs.am $(top_srcdir)/../../../../../automake/local.am
     108        cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
     109
     110Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    24111        cd $(top_builddir) \
    25          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     112          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
     113
     114$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
     115        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
     116
     117config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
     118        $(SHELL) ./config.status --recheck
     119$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
     120        cd $(srcdir) && $(AUTOCONF)
     121
     122# This directory's subdirectories are mostly independent; you can cd
     123# into them and run `make' without going through this Makefile.
     124# To change the values of `make' variables: instead of editing Makefiles,
     125# (1) if the variable is set in `config.status', edit `config.status'
     126#     (which will cause the Makefiles to be regenerated when you run `make');
     127# (2) otherwise, pass the desired values on the `make' command line.
     128
     129@SET_MAKE@
     130
     131all-recursive install-data-recursive install-exec-recursive \
     132installdirs-recursive install-recursive uninstall-recursive  \
     133check-recursive installcheck-recursive info-recursive dvi-recursive:
     134        @set fnord $(MAKEFLAGS); amf=$$2; \
     135        dot_seen=no; \
     136        target=`echo $@ | sed s/-recursive//`; \
     137        list='$(SUBDIRS)'; for subdir in $$list; do \
     138          echo "Making $$target in $$subdir"; \
     139          if test "$$subdir" = "."; then \
     140            dot_seen=yes; \
     141            local_target="$$target-am"; \
     142          else \
     143            local_target="$$target"; \
     144          fi; \
     145          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     146           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     147        done; \
     148        if test "$$dot_seen" = "no"; then \
     149          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     150        fi; test -z "$$fail"
     151
     152mostlyclean-recursive clean-recursive distclean-recursive \
     153maintainer-clean-recursive:
     154        @set fnord $(MAKEFLAGS); amf=$$2; \
     155        dot_seen=no; \
     156        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
     157          rev="$$subdir $$rev"; \
     158          test "$$subdir" = "." && dot_seen=yes; \
     159        done; \
     160        test "$$dot_seen" = "no" && rev=". $$rev"; \
     161        target=`echo $@ | sed s/-recursive//`; \
     162        for subdir in $$rev; do \
     163          echo "Making $$target in $$subdir"; \
     164          if test "$$subdir" = "."; then \
     165            local_target="$$target-am"; \
     166          else \
     167            local_target="$$target"; \
     168          fi; \
     169          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     170           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     171        done && test -z "$$fail"
     172tags-recursive:
     173        list='$(SUBDIRS)'; for subdir in $$list; do \
     174          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
     175        done
     176
     177tags: TAGS
     178
     179ID: $(HEADERS) $(SOURCES) $(LISP)
     180        list='$(SOURCES) $(HEADERS)'; \
     181        unique=`for i in $$list; do echo $$i; done | \
     182          awk '    { files[$$0] = 1; } \
     183               END { for (i in files) print i; }'`; \
     184        here=`pwd` && cd $(srcdir) \
     185          && mkid -f$$here/ID $$unique $(LISP)
     186
     187TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     188        tags=; \
     189        here=`pwd`; \
     190        list='$(SUBDIRS)'; for subdir in $$list; do \
     191   if test "$$subdir" = .; then :; else \
     192            test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
     193   fi; \
     194        done; \
     195        list='$(SOURCES) $(HEADERS)'; \
     196        unique=`for i in $$list; do echo $$i; done | \
     197          awk '    { files[$$0] = 1; } \
     198               END { for (i in files) print i; }'`; \
     199        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     200          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     201
     202mostlyclean-tags:
     203
     204clean-tags:
     205
     206distclean-tags:
     207        -rm -f TAGS ID
     208
     209maintainer-clean-tags:
     210
     211distdir = $(PACKAGE)-$(VERSION)
     212top_distdir = $(distdir)
     213
     214# This target untars the dist file and tries a VPATH configuration.  Then
     215# it guarantees that the distribution is self-contained by making another
     216# tarfile.
     217distcheck: dist
     218        -rm -rf $(distdir)
     219        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
     220        mkdir $(distdir)/=build
     221        mkdir $(distdir)/=inst
     222        dc_install_base=`cd $(distdir)/=inst && pwd`; \
     223        cd $(distdir)/=build \
     224          && ../configure --srcdir=.. --prefix=$$dc_install_base \
     225          && $(MAKE) $(AM_MAKEFLAGS) \
     226          && $(MAKE) $(AM_MAKEFLAGS) dvi \
     227          && $(MAKE) $(AM_MAKEFLAGS) check \
     228          && $(MAKE) $(AM_MAKEFLAGS) install \
     229          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
     230          && $(MAKE) $(AM_MAKEFLAGS) dist
     231        -rm -rf $(distdir)
     232        @banner="$(distdir).tar.gz is ready for distribution"; \
     233        dashes=`echo "$$banner" | sed s/./=/g`; \
     234        echo "$$dashes"; \
     235        echo "$$banner"; \
     236        echo "$$dashes"
     237dist: distdir
     238        -chmod -R a+r $(distdir)
     239        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     240        -rm -rf $(distdir)
     241dist-all: distdir
     242        -chmod -R a+r $(distdir)
     243        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     244        -rm -rf $(distdir)
     245distdir: $(DISTFILES)
     246        -rm -rf $(distdir)
     247        mkdir $(distdir)
     248        -chmod 777 $(distdir)
     249        here=`cd $(top_builddir) && pwd`; \
     250        top_distdir=`cd $(distdir) && pwd`; \
     251        distdir=`cd $(distdir) && pwd`; \
     252        cd $(top_srcdir) \
     253          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
     254        @for file in $(DISTFILES); do \
     255          d=$(srcdir); \
     256          if test -d $$d/$$file; then \
     257            cp -pr $$d/$$file $(distdir)/$$file; \
     258          else \
     259            test -f $(distdir)/$$file \
     260            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     261            || cp -p $$d/$$file $(distdir)/$$file || :; \
     262          fi; \
     263        done
     264        for subdir in $(SUBDIRS); do \
     265          if test "$$subdir" = .; then :; else \
     266            test -d $(distdir)/$$subdir \
     267            || mkdir $(distdir)/$$subdir \
     268            || exit 1; \
     269            chmod 777 $(distdir)/$$subdir; \
     270            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
     271              || exit 1; \
     272          fi; \
     273        done
     274info-am:
     275info: info-recursive
     276dvi-am:
     277dvi: dvi-recursive
     278check-am: all-am
     279check: check-recursive
     280installcheck-am:
     281installcheck: installcheck-recursive
     282install-exec-am:
     283install-exec: install-exec-recursive
     284
     285install-data-am:
     286install-data: install-data-recursive
     287
     288install-am: all-am
     289        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     290install: install-recursive
     291uninstall-am:
     292uninstall: uninstall-recursive
     293all-am: Makefile
     294all-redirect: all-recursive
     295install-strip:
     296        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     297installdirs: installdirs-recursive
     298installdirs-am:
     299
     300
     301mostlyclean-generic:
     302
     303clean-generic:
     304
     305distclean-generic:
     306        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     307        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     308
     309maintainer-clean-generic:
     310mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     311
     312mostlyclean: mostlyclean-recursive
     313
     314clean-am:  clean-tags clean-generic mostlyclean-am
     315
     316clean: clean-recursive
     317
     318distclean-am:  distclean-tags distclean-generic clean-am
     319
     320distclean: distclean-recursive
     321        -rm -f config.status
     322
     323maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     324                distclean-am
     325        @echo "This command is intended for maintainers to use;"
     326        @echo "it deletes files that may require special tools to rebuild."
     327
     328maintainer-clean: maintainer-clean-recursive
     329        -rm -f config.status
     330
     331.PHONY: install-data-recursive uninstall-data-recursive \
     332install-exec-recursive uninstall-exec-recursive installdirs-recursive \
     333uninstalldirs-recursive all-recursive check-recursive \
     334installcheck-recursive info-recursive dvi-recursive \
     335mostlyclean-recursive distclean-recursive clean-recursive \
     336maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
     337distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
     338dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
     339install-exec install-data-am install-data install-am install \
     340uninstall-am uninstall all-redirect all-am all installdirs-am \
     341installdirs mostlyclean-generic distclean-generic clean-generic \
     342maintainer-clean-generic clean mostlyclean distclean maintainer-clean
     343
     344
     345depend-recursive \
     346preinstall-recursive \
     347debug-recursive \
     348profile-recursive:
     349        @set fnord $(MAKEFLAGS); amf=$$2; \
     350        dot_seen=no; \
     351        target=`echo $@ | sed s/-recursive//`; \
     352        list='$(SUBDIRS)'; for subdir in $$list; do \
     353          echo "Making $$target in $$subdir"; \
     354          if test "$$subdir" = "."; then \
     355            dot_seen=yes; \
     356            local_target="$$target-am"; \
     357          else \
     358            local_target="$$target"; \
     359          fi; \
     360          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     361           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     362        done; \
     363        if test "$$dot_seen" = "no"; then \
     364          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     365        fi; test -z "$$fail"
     366
     367debug: debug-recursive
     368.PHONY: debug-recursive
     369
     370profile: profile-recursive
     371.PHONY: profile-recursive
     372
     373preinstall: preinstall-recursive
     374.PHONY: preinstall-recursive
     375
     376depend: depend-recursive
     377.PHONY: depend-recursive
     378
     379debug-am:
     380debug: debug-am
     381.PHONY: debug debug-am
     382
     383profile-am:
     384profile: profile-am
     385.PHONY: profile profile-am
     386
     387preinstall-am: $(PREINSTALL_FILES)
     388preinstall: preinstall-am
     389.PHONY: preinstall preinstall-am
     390
     391depend-am:
     392depend: depend-am
     393.PHONY: depend depend-am
     394
     395# Tell versions [3.59,3.63) of GNU make to not export all variables.
     396# Otherwise a system limit (for SysV at least) may be exceeded.
     397.NOEXPORT:
  • c/src/lib/libcpu/mips64orion/clock/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = mips64orion/clock
     8top_builddir = ..
     9subdir = clock
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/mips64orion/timer/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = mips64orion/timer
     8top_builddir = ..
     9subdir = timer
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ..
    9 subdir = powerpc
     8top_builddir = .
     9
     10ACLOCAL = aclocal
     11AUTOCONF = autoconf
     12ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
     13ACLOCAL_AMFLAGS = -I @RTEMS_TOPdir@/aclocal
    1014
    1115RTEMS_ROOT = @RTEMS_ROOT@
     
    2125ifeq ($(RTEMS_CPU_MODEL),mpc750)
    2226SHARED_LIB = shared mpc6xx
    23 endif
     27endif 
    2428ifeq ($(RTEMS_CPU_MODEL),mpc604)
    2529SHARED_LIB = shared mpc6xx
    26 endif
     30endif 
    2731
    2832SUBDIRS = $(SHARED_LIB) $(wildcard $(RTEMS_CPU_MODEL)) wrapup
     
    3034Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    3135        cd $(top_builddir) \
    32          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     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)
  • c/src/lib/libcpu/powerpc/mpc505/timer/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc505/timer
     8top_builddir = ../..
     9subdir = mpc505/timer
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc505/vectors/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc505/vectors
     8top_builddir = ../..
     9subdir = mpc505/vectors
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc6xx/clock/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc6xx/clock
     8top_builddir = ../..
     9subdir = mpc6xx/clock
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
     
    3333
    3434INSTALL_CHANGE = @INSTALL_CHANGE@
     35mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
     36
     37INSTALLDIRS = $(PROJECT_INCLUDE)/libcpu
     38
     39$(INSTALLDIRS):
     40        @$(mkinstalldirs) $(INSTALLDIRS)
    3541
    3642#
  • c/src/lib/libcpu/powerpc/mpc6xx/exceptions/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc6xx/exceptions
     8top_builddir = ../..
     9subdir = mpc6xx/exceptions
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc6xx/mmu/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc6xx/mmu
     8top_builddir = ../..
     9subdir = mpc6xx/mmu
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc6xx/wrapup/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc6xx/wrapup
     8top_builddir = ../..
     9subdir = mpc6xx/wrapup
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
     
    1515
    1616# PROC_SPECIFIC_O_PIECES = exceptions mmu clock
    17 PROC_SPECIFIC_O_PIECES = exceptions mmu 
     17PROC_SPECIFIC_O_PIECES = exceptions mmu
    1818GENERIC_PIECES =
    1919
    2020# bummer; have to use $foreach since % pattern subst rules only replace 1x
    2121OBJS = $(foreach piece, $(PROC_SPECIFIC_O_PIECES), \
    22     ../../mpc6xx/$(piece)/$(ARCH)/*.o) $(foreach piece, \
    23     $(GENERIC_PIECES), ../../mpc6xx/$(piece)/$(ARCH)/*.o)
     22    ../../mpc6xx/$(piece)/$(ARCH)/*.o) $(foreach piece, $(GENERIC_PIECES), \
     23    ../../mpc6xx/$(piece)/$(ARCH)/*.o)
    2424LIB = $(ARCH)/libcpuspec.a
    2525
  • c/src/lib/libcpu/powerpc/mpc821/clock/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc821/clock
     8top_builddir = ../..
     9subdir = mpc821/clock
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc821/console-generic/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc821/console-generic
     8top_builddir = ../..
     9subdir = mpc821/console-generic
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc821/timer/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc821/timer
     8top_builddir = ../..
     9subdir = mpc821/timer
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc821/vectors/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc821/vectors
     8top_builddir = ../..
     9subdir = mpc821/vectors
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc860/clock/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc860/clock
     8top_builddir = ../..
     9subdir = mpc860/clock
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc860/console-generic/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc860/console-generic
     8top_builddir = ../..
     9subdir = mpc860/console-generic
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc860/timer/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc860/timer
     8top_builddir = ../..
     9subdir = mpc860/timer
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/mpc860/vectors/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/mpc860/vectors
     8top_builddir = ../..
     9subdir = mpc860/vectors
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/ppc403/clock/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/ppc403/clock
     8top_builddir = ../..
     9subdir = ppc403/clock
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/ppc403/console/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/ppc403/console
     8top_builddir = ../..
     9subdir = ppc403/console
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/ppc403/ictrl/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/ppc403/ictrl
     8top_builddir = ../..
     9subdir = ppc403/ictrl
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/ppc403/timer/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/ppc403/timer
     8top_builddir = ../..
     9subdir = ppc403/timer
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/ppc403/vectors/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = powerpc/ppc403/vectors
     8top_builddir = ../..
     9subdir = ppc403/vectors
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/shared/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = powerpc/shared
     8top_builddir = ..
     9subdir = shared
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
  • c/src/lib/libcpu/powerpc/wrapup/Makefile.in

    r5bce35b r35d7b15  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = powerpc/wrapup
     8top_builddir = ..
     9subdir = wrapup
    1010
    1111RTEMS_ROOT = @RTEMS_ROOT@
     
    1919# So far FAMILY_OBJ is empty and ar dislike it...
    2020CPU_SPECIFIC_OBJS = $(wildcard ../$(RTEMS_CPU_MODEL)/*/$(ARCH)/*.o)
    21 FAMILY_OBJS = $(wildcard ../shared/$(ARCH)/*.o ../shared/*/$(ARCH)/*.o ../mpc6xx/*/$(ARCH)/*.o)
     21FAMILY_OBJS = $(wildcard ../shared/$(ARCH)/*.o ../shared/*/$(ARCH)/*.o \
     22    ../mpc6xx/*/$(ARCH)/*.o)
    2223
    2324LIB = $(ARCH)/libcpu.a
  • c/src/lib/libcpu/sh/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15
     16SHELL = @SHELL@
     17
    618srcdir = @srcdir@
    719top_srcdir = @top_srcdir@
    8 top_builddir = ..
    9 subdir = sh
    10 
     20VPATH = @srcdir@
     21prefix = @prefix@
     22exec_prefix = @exec_prefix@
     23
     24bindir = @bindir@
     25sbindir = @sbindir@
     26libexecdir = @libexecdir@
     27datadir = @datadir@
     28sysconfdir = @sysconfdir@
     29sharedstatedir = @sharedstatedir@
     30localstatedir = @localstatedir@
     31libdir = @libdir@
     32infodir = @infodir@
     33mandir = @mandir@
     34includedir = @includedir@
     35oldincludedir = /usr/include
     36
     37DESTDIR =
     38
     39pkgdatadir = $(datadir)/@PACKAGE@
     40pkglibdir = $(libdir)/@PACKAGE@
     41pkgincludedir = $(includedir)/@PACKAGE@
     42
     43top_builddir = .
     44
     45ACLOCAL = @ACLOCAL@
     46AUTOCONF = @AUTOCONF@
     47AUTOMAKE = @AUTOMAKE@
     48AUTOHEADER = @AUTOHEADER@
     49
     50INSTALL = @INSTALL@
     51INSTALL_PROGRAM = @INSTALL_PROGRAM@
     52INSTALL_DATA = @INSTALL_DATA@
     53INSTALL_SCRIPT = @INSTALL_SCRIPT@
     54INSTALL_STRIP_FLAG =
     55transform = @program_transform_name@
     56
     57NORMAL_INSTALL = :
     58PRE_INSTALL = :
     59POST_INSTALL = :
     60NORMAL_UNINSTALL = :
     61PRE_UNINSTALL = :
     62POST_UNINSTALL = :
     63build_alias = @build_alias@
     64build_triplet = @build@
     65host_alias = @host_alias@
     66host_triplet = @host@
     67target_alias = @target_alias@
     68target_triplet = @target@
     69CC = @CC@
     70CC_FOR_TARGET = @CC_FOR_TARGET@
     71CPP = @CPP@
     72GCCSED = @GCCSED@
     73INSTALL_CHANGE = @INSTALL_CHANGE@
     74MAINT = @MAINT@
     75MAKEINFO = @MAKEINFO@
     76PACKAGE = @PACKAGE@
     77PACKHEX = @PACKHEX@
     78PROJECT_INCLUDE = @PROJECT_INCLUDE@
     79PROJECT_RELEASE = @PROJECT_RELEASE@
     80PROJECT_ROOT = @PROJECT_ROOT@
     81RTEMS_BSP = @RTEMS_BSP@
     82RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     83RTEMS_CPU = @RTEMS_CPU@
     84RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     85RTEMS_HOST = @RTEMS_HOST@
     86RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1187RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    17 include $(RTEMS_ROOT)/make/directory.cfg
    18 
    19 INSTALL_CHANGE = @INSTALL_CHANGE@
    20 
    21 SUBDIRS = $(wildcard $(RTEMS_CPU_MODEL))
    22 
    23 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     88RTEMS_TOPdir = @RTEMS_TOPdir@
     89VERSION = @VERSION@
     90
     91AUTOMAKE_OPTIONS = foreign 1.4
     92ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
     93
     94SUBDIRS = @RTEMS_CPU_MODEL@
     95ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
     96mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     97CONFIG_CLEAN_FILES =
     98DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in
     99
     100
     101DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     102
     103TAR = gtar
     104GZIP_ENV = --best
     105all: all-redirect
     106.SUFFIXES:
     107$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/subdirs.am $(top_srcdir)/../../../../../automake/local.am
     108        cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
     109
     110Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    24111        cd $(top_builddir) \
    25          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     112          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
     113
     114$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
     115        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
     116
     117config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
     118        $(SHELL) ./config.status --recheck
     119$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
     120        cd $(srcdir) && $(AUTOCONF)
     121
     122# This directory's subdirectories are mostly independent; you can cd
     123# into them and run `make' without going through this Makefile.
     124# To change the values of `make' variables: instead of editing Makefiles,
     125# (1) if the variable is set in `config.status', edit `config.status'
     126#     (which will cause the Makefiles to be regenerated when you run `make');
     127# (2) otherwise, pass the desired values on the `make' command line.
     128
     129@SET_MAKE@
     130
     131all-recursive install-data-recursive install-exec-recursive \
     132installdirs-recursive install-recursive uninstall-recursive  \
     133check-recursive installcheck-recursive info-recursive dvi-recursive:
     134        @set fnord $(MAKEFLAGS); amf=$$2; \
     135        dot_seen=no; \
     136        target=`echo $@ | sed s/-recursive//`; \
     137        list='$(SUBDIRS)'; for subdir in $$list; do \
     138          echo "Making $$target in $$subdir"; \
     139          if test "$$subdir" = "."; then \
     140            dot_seen=yes; \
     141            local_target="$$target-am"; \
     142          else \
     143            local_target="$$target"; \
     144          fi; \
     145          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     146           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     147        done; \
     148        if test "$$dot_seen" = "no"; then \
     149          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     150        fi; test -z "$$fail"
     151
     152mostlyclean-recursive clean-recursive distclean-recursive \
     153maintainer-clean-recursive:
     154        @set fnord $(MAKEFLAGS); amf=$$2; \
     155        dot_seen=no; \
     156        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
     157          rev="$$subdir $$rev"; \
     158          test "$$subdir" = "." && dot_seen=yes; \
     159        done; \
     160        test "$$dot_seen" = "no" && rev=". $$rev"; \
     161        target=`echo $@ | sed s/-recursive//`; \
     162        for subdir in $$rev; do \
     163          echo "Making $$target in $$subdir"; \
     164          if test "$$subdir" = "."; then \
     165            local_target="$$target-am"; \
     166          else \
     167            local_target="$$target"; \
     168          fi; \
     169          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     170           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     171        done && test -z "$$fail"
     172tags-recursive:
     173        list='$(SUBDIRS)'; for subdir in $$list; do \
     174          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
     175        done
     176
     177tags: TAGS
     178
     179ID: $(HEADERS) $(SOURCES) $(LISP)
     180        list='$(SOURCES) $(HEADERS)'; \
     181        unique=`for i in $$list; do echo $$i; done | \
     182          awk '    { files[$$0] = 1; } \
     183               END { for (i in files) print i; }'`; \
     184        here=`pwd` && cd $(srcdir) \
     185          && mkid -f$$here/ID $$unique $(LISP)
     186
     187TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     188        tags=; \
     189        here=`pwd`; \
     190        list='$(SUBDIRS)'; for subdir in $$list; do \
     191   if test "$$subdir" = .; then :; else \
     192            test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
     193   fi; \
     194        done; \
     195        list='$(SOURCES) $(HEADERS)'; \
     196        unique=`for i in $$list; do echo $$i; done | \
     197          awk '    { files[$$0] = 1; } \
     198               END { for (i in files) print i; }'`; \
     199        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     200          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     201
     202mostlyclean-tags:
     203
     204clean-tags:
     205
     206distclean-tags:
     207        -rm -f TAGS ID
     208
     209maintainer-clean-tags:
     210
     211distdir = $(PACKAGE)-$(VERSION)
     212top_distdir = $(distdir)
     213
     214# This target untars the dist file and tries a VPATH configuration.  Then
     215# it guarantees that the distribution is self-contained by making another
     216# tarfile.
     217distcheck: dist
     218        -rm -rf $(distdir)
     219        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
     220        mkdir $(distdir)/=build
     221        mkdir $(distdir)/=inst
     222        dc_install_base=`cd $(distdir)/=inst && pwd`; \
     223        cd $(distdir)/=build \
     224          && ../configure --srcdir=.. --prefix=$$dc_install_base \
     225          && $(MAKE) $(AM_MAKEFLAGS) \
     226          && $(MAKE) $(AM_MAKEFLAGS) dvi \
     227          && $(MAKE) $(AM_MAKEFLAGS) check \
     228          && $(MAKE) $(AM_MAKEFLAGS) install \
     229          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
     230          && $(MAKE) $(AM_MAKEFLAGS) dist
     231        -rm -rf $(distdir)
     232        @banner="$(distdir).tar.gz is ready for distribution"; \
     233        dashes=`echo "$$banner" | sed s/./=/g`; \
     234        echo "$$dashes"; \
     235        echo "$$banner"; \
     236        echo "$$dashes"
     237dist: distdir
     238        -chmod -R a+r $(distdir)
     239        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     240        -rm -rf $(distdir)
     241dist-all: distdir
     242        -chmod -R a+r $(distdir)
     243        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
     244        -rm -rf $(distdir)
     245distdir: $(DISTFILES)
     246        -rm -rf $(distdir)
     247        mkdir $(distdir)
     248        -chmod 777 $(distdir)
     249        here=`cd $(top_builddir) && pwd`; \
     250        top_distdir=`cd $(distdir) && pwd`; \
     251        distdir=`cd $(distdir) && pwd`; \
     252        cd $(top_srcdir) \
     253          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
     254        @for file in $(DISTFILES); do \
     255          d=$(srcdir); \
     256          if test -d $$d/$$file; then \
     257            cp -pr $$d/$$file $(distdir)/$$file; \
     258          else \
     259            test -f $(distdir)/$$file \
     260            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     261            || cp -p $$d/$$file $(distdir)/$$file || :; \
     262          fi; \
     263        done
     264        for subdir in $(SUBDIRS); do \
     265          if test "$$subdir" = .; then :; else \
     266            test -d $(distdir)/$$subdir \
     267            || mkdir $(distdir)/$$subdir \
     268            || exit 1; \
     269            chmod 777 $(distdir)/$$subdir; \
     270            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
     271              || exit 1; \
     272          fi; \
     273        done
     274info-am:
     275info: info-recursive
     276dvi-am:
     277dvi: dvi-recursive
     278check-am: all-am
     279check: check-recursive
     280installcheck-am:
     281installcheck: installcheck-recursive
     282install-exec-am:
     283install-exec: install-exec-recursive
     284
     285install-data-am:
     286install-data: install-data-recursive
     287
     288install-am: all-am
     289        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     290install: install-recursive
     291uninstall-am:
     292uninstall: uninstall-recursive
     293all-am: Makefile
     294all-redirect: all-recursive
     295install-strip:
     296        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     297installdirs: installdirs-recursive
     298installdirs-am:
     299
     300
     301mostlyclean-generic:
     302
     303clean-generic:
     304
     305distclean-generic:
     306        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     307        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     308
     309maintainer-clean-generic:
     310mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     311
     312mostlyclean: mostlyclean-recursive
     313
     314clean-am:  clean-tags clean-generic mostlyclean-am
     315
     316clean: clean-recursive
     317
     318distclean-am:  distclean-tags distclean-generic clean-am
     319
     320distclean: distclean-recursive
     321        -rm -f config.status
     322
     323maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     324                distclean-am
     325        @echo "This command is intended for maintainers to use;"
     326        @echo "it deletes files that may require special tools to rebuild."
     327
     328maintainer-clean: maintainer-clean-recursive
     329        -rm -f config.status
     330
     331.PHONY: install-data-recursive uninstall-data-recursive \
     332install-exec-recursive uninstall-exec-recursive installdirs-recursive \
     333uninstalldirs-recursive all-recursive check-recursive \
     334installcheck-recursive info-recursive dvi-recursive \
     335mostlyclean-recursive distclean-recursive clean-recursive \
     336maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
     337distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
     338dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
     339install-exec install-data-am install-data install-am install \
     340uninstall-am uninstall all-redirect all-am all installdirs-am \
     341installdirs mostlyclean-generic distclean-generic clean-generic \
     342maintainer-clean-generic clean mostlyclean distclean maintainer-clean
     343
     344
     345depend-recursive \
     346preinstall-recursive \
     347debug-recursive \
     348profile-recursive:
     349        @set fnord $(MAKEFLAGS); amf=$$2; \
     350        dot_seen=no; \
     351        target=`echo $@ | sed s/-recursive//`; \
     352        list='$(SUBDIRS)'; for subdir in $$list; do \
     353          echo "Making $$target in $$subdir"; \
     354          if test "$$subdir" = "."; then \
     355            dot_seen=yes; \
     356            local_target="$$target-am"; \
     357          else \
     358            local_target="$$target"; \
     359          fi; \
     360          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     361           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     362        done; \
     363        if test "$$dot_seen" = "no"; then \
     364          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     365        fi; test -z "$$fail"
     366
     367debug: debug-recursive
     368.PHONY: debug-recursive
     369
     370profile: profile-recursive
     371.PHONY: profile-recursive
     372
     373preinstall: preinstall-recursive
     374.PHONY: preinstall-recursive
     375
     376depend: depend-recursive
     377.PHONY: depend-recursive
     378
     379debug-am:
     380debug: debug-am
     381.PHONY: debug debug-am
     382
     383profile-am:
     384profile: profile-am
     385.PHONY: profile profile-am
     386
     387preinstall-am: $(PREINSTALL_FILES)
     388preinstall: preinstall-am
     389.PHONY: preinstall preinstall-am
     390
     391depend-am:
     392depend: depend-am
     393.PHONY: depend depend-am
     394
     395# Tell versions [3.59,3.63) of GNU make to not export all variables.
     396# Otherwise a system limit (for SysV at least) may be exceeded.
     397.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7032/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 # $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15
     16SHELL = @SHELL@
     17
    618srcdir = @srcdir@
    719top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = sh/sh7032
    10 
     20VPATH = @srcdir@
     21prefix = @prefix@
     22exec_prefix = @exec_prefix@
     23
     24bindir = @bindir@
     25sbindir = @sbindir@
     26libexecdir = @libexecdir@
     27datadir = @datadir@
     28sysconfdir = @sysconfdir@
     29sharedstatedir = @sharedstatedir@
     30localstatedir = @localstatedir@
     31libdir = @libdir@
     32infodir = @infodir@
     33mandir = @mandir@
     34includedir = @includedir@
     35oldincludedir = /usr/include
     36
     37DESTDIR =
     38
     39pkgdatadir = $(datadir)/@PACKAGE@
     40pkglibdir = $(libdir)/@PACKAGE@
     41pkgincludedir = $(includedir)/@PACKAGE@
     42
     43top_builddir = ..
     44
     45ACLOCAL = @ACLOCAL@
     46AUTOCONF = @AUTOCONF@
     47AUTOMAKE = @AUTOMAKE@
     48AUTOHEADER = @AUTOHEADER@
     49
     50INSTALL = @INSTALL@
     51INSTALL_PROGRAM = @INSTALL_PROGRAM@
     52INSTALL_DATA = @INSTALL_DATA@
     53INSTALL_SCRIPT = @INSTALL_SCRIPT@
     54INSTALL_STRIP_FLAG =
     55transform = @program_transform_name@
     56
     57NORMAL_INSTALL = :
     58PRE_INSTALL = :
     59POST_INSTALL = :
     60NORMAL_UNINSTALL = :
     61PRE_UNINSTALL = :
     62POST_UNINSTALL = :
     63build_alias = @build_alias@
     64build_triplet = @build@
     65host_alias = @host_alias@
     66host_triplet = @host@
     67target_alias = @target_alias@
     68target_triplet = @target@
     69CC = @CC@
     70CC_FOR_TARGET = @CC_FOR_TARGET@
     71CPP = @CPP@
     72GCCSED = @GCCSED@
     73INSTALL_CHANGE = @INSTALL_CHANGE@
     74MAINT = @MAINT@
     75MAKEINFO = @MAKEINFO@
     76PACKAGE = @PACKAGE@
     77PACKHEX = @PACKHEX@
     78PROJECT_INCLUDE = @PROJECT_INCLUDE@
     79PROJECT_RELEASE = @PROJECT_RELEASE@
     80PROJECT_ROOT = @PROJECT_ROOT@
     81RTEMS_BSP = @RTEMS_BSP@
     82RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     83RTEMS_CPU = @RTEMS_CPU@
     84RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     85RTEMS_HOST = @RTEMS_HOST@
     86RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1187RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    17 include $(RTEMS_ROOT)/make/directory.cfg
    18 
    19 INSTALL_CHANGE = @INSTALL_CHANGE@
     88RTEMS_TOPdir = @RTEMS_TOPdir@
     89VERSION = @VERSION@
     90
     91AUTOMAKE_OPTIONS = foreign 1.4
    2092
    2193SUBDIRS = include clock timer null sci delay
    22 
    23 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     94mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     95CONFIG_CLEAN_FILES =
     96DIST_COMMON =  Makefile.am Makefile.in
     97
     98
     99DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     100
     101TAR = gtar
     102GZIP_ENV = --best
     103all: all-redirect
     104.SUFFIXES:
     105$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/subdirs.am $(top_srcdir)/../../../../../automake/local.am
     106        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7032/Makefile
     107
     108Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    24109        cd $(top_builddir) \
    25          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     110          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     111
     112
     113# This directory's subdirectories are mostly independent; you can cd
     114# into them and run `make' without going through this Makefile.
     115# To change the values of `make' variables: instead of editing Makefiles,
     116# (1) if the variable is set in `config.status', edit `config.status'
     117#     (which will cause the Makefiles to be regenerated when you run `make');
     118# (2) otherwise, pass the desired values on the `make' command line.
     119
     120@SET_MAKE@
     121
     122all-recursive install-data-recursive install-exec-recursive \
     123installdirs-recursive install-recursive uninstall-recursive  \
     124check-recursive installcheck-recursive info-recursive dvi-recursive:
     125        @set fnord $(MAKEFLAGS); amf=$$2; \
     126        dot_seen=no; \
     127        target=`echo $@ | sed s/-recursive//`; \
     128        list='$(SUBDIRS)'; for subdir in $$list; do \
     129          echo "Making $$target in $$subdir"; \
     130          if test "$$subdir" = "."; then \
     131            dot_seen=yes; \
     132            local_target="$$target-am"; \
     133          else \
     134            local_target="$$target"; \
     135          fi; \
     136          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     137           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     138        done; \
     139        if test "$$dot_seen" = "no"; then \
     140          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     141        fi; test -z "$$fail"
     142
     143mostlyclean-recursive clean-recursive distclean-recursive \
     144maintainer-clean-recursive:
     145        @set fnord $(MAKEFLAGS); amf=$$2; \
     146        dot_seen=no; \
     147        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
     148          rev="$$subdir $$rev"; \
     149          test "$$subdir" = "." && dot_seen=yes; \
     150        done; \
     151        test "$$dot_seen" = "no" && rev=". $$rev"; \
     152        target=`echo $@ | sed s/-recursive//`; \
     153        for subdir in $$rev; do \
     154          echo "Making $$target in $$subdir"; \
     155          if test "$$subdir" = "."; then \
     156            local_target="$$target-am"; \
     157          else \
     158            local_target="$$target"; \
     159          fi; \
     160          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     161           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     162        done && test -z "$$fail"
     163tags-recursive:
     164        list='$(SUBDIRS)'; for subdir in $$list; do \
     165          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
     166        done
     167
     168tags: TAGS
     169
     170ID: $(HEADERS) $(SOURCES) $(LISP)
     171        list='$(SOURCES) $(HEADERS)'; \
     172        unique=`for i in $$list; do echo $$i; done | \
     173          awk '    { files[$$0] = 1; } \
     174               END { for (i in files) print i; }'`; \
     175        here=`pwd` && cd $(srcdir) \
     176          && mkid -f$$here/ID $$unique $(LISP)
     177
     178TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     179        tags=; \
     180        here=`pwd`; \
     181        list='$(SUBDIRS)'; for subdir in $$list; do \
     182   if test "$$subdir" = .; then :; else \
     183            test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
     184   fi; \
     185        done; \
     186        list='$(SOURCES) $(HEADERS)'; \
     187        unique=`for i in $$list; do echo $$i; done | \
     188          awk '    { files[$$0] = 1; } \
     189               END { for (i in files) print i; }'`; \
     190        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     191          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     192
     193mostlyclean-tags:
     194
     195clean-tags:
     196
     197distclean-tags:
     198        -rm -f TAGS ID
     199
     200maintainer-clean-tags:
     201
     202distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     203
     204subdir = sh7032
     205
     206distdir: $(DISTFILES)
     207        here=`cd $(top_builddir) && pwd`; \
     208        top_distdir=`cd $(top_distdir) && pwd`; \
     209        distdir=`cd $(distdir) && pwd`; \
     210        cd $(top_srcdir) \
     211          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7032/Makefile
     212        @for file in $(DISTFILES); do \
     213          d=$(srcdir); \
     214          if test -d $$d/$$file; then \
     215            cp -pr $$d/$$file $(distdir)/$$file; \
     216          else \
     217            test -f $(distdir)/$$file \
     218            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     219            || cp -p $$d/$$file $(distdir)/$$file || :; \
     220          fi; \
     221        done
     222        for subdir in $(SUBDIRS); do \
     223          if test "$$subdir" = .; then :; else \
     224            test -d $(distdir)/$$subdir \
     225            || mkdir $(distdir)/$$subdir \
     226            || exit 1; \
     227            chmod 777 $(distdir)/$$subdir; \
     228            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
     229              || exit 1; \
     230          fi; \
     231        done
     232info-am:
     233info: info-recursive
     234dvi-am:
     235dvi: dvi-recursive
     236check-am: all-am
     237check: check-recursive
     238installcheck-am:
     239installcheck: installcheck-recursive
     240install-exec-am:
     241install-exec: install-exec-recursive
     242
     243install-data-am:
     244install-data: install-data-recursive
     245
     246install-am: all-am
     247        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     248install: install-recursive
     249uninstall-am:
     250uninstall: uninstall-recursive
     251all-am: Makefile
     252all-redirect: all-recursive
     253install-strip:
     254        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     255installdirs: installdirs-recursive
     256installdirs-am:
     257
     258
     259mostlyclean-generic:
     260
     261clean-generic:
     262
     263distclean-generic:
     264        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     265        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     266
     267maintainer-clean-generic:
     268mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     269
     270mostlyclean: mostlyclean-recursive
     271
     272clean-am:  clean-tags clean-generic mostlyclean-am
     273
     274clean: clean-recursive
     275
     276distclean-am:  distclean-tags distclean-generic clean-am
     277
     278distclean: distclean-recursive
     279
     280maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     281                distclean-am
     282        @echo "This command is intended for maintainers to use;"
     283        @echo "it deletes files that may require special tools to rebuild."
     284
     285maintainer-clean: maintainer-clean-recursive
     286
     287.PHONY: install-data-recursive uninstall-data-recursive \
     288install-exec-recursive uninstall-exec-recursive installdirs-recursive \
     289uninstalldirs-recursive all-recursive check-recursive \
     290installcheck-recursive info-recursive dvi-recursive \
     291mostlyclean-recursive distclean-recursive clean-recursive \
     292maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
     293distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
     294dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
     295install-exec install-data-am install-data install-am install \
     296uninstall-am uninstall all-redirect all-am all installdirs-am \
     297installdirs mostlyclean-generic distclean-generic clean-generic \
     298maintainer-clean-generic clean mostlyclean distclean maintainer-clean
     299
     300
     301depend-recursive \
     302preinstall-recursive \
     303debug-recursive \
     304profile-recursive:
     305        @set fnord $(MAKEFLAGS); amf=$$2; \
     306        dot_seen=no; \
     307        target=`echo $@ | sed s/-recursive//`; \
     308        list='$(SUBDIRS)'; for subdir in $$list; do \
     309          echo "Making $$target in $$subdir"; \
     310          if test "$$subdir" = "."; then \
     311            dot_seen=yes; \
     312            local_target="$$target-am"; \
     313          else \
     314            local_target="$$target"; \
     315          fi; \
     316          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     317           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     318        done; \
     319        if test "$$dot_seen" = "no"; then \
     320          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     321        fi; test -z "$$fail"
     322
     323debug: debug-recursive
     324.PHONY: debug-recursive
     325
     326profile: profile-recursive
     327.PHONY: profile-recursive
     328
     329preinstall: preinstall-recursive
     330.PHONY: preinstall-recursive
     331
     332depend: depend-recursive
     333.PHONY: depend-recursive
     334
     335debug-am:
     336debug: debug-am
     337.PHONY: debug debug-am
     338
     339profile-am:
     340profile: profile-am
     341.PHONY: profile profile-am
     342
     343preinstall-am: $(PREINSTALL_FILES)
     344preinstall: preinstall-am
     345.PHONY: preinstall preinstall-am
     346
     347depend-am:
     348depend: depend-am
     349.PHONY: depend depend-am
     350
     351# Tell versions [3.59,3.63) of GNU make to not export all variables.
     352# Otherwise a system limit (for SysV at least) may be exceeded.
     353.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7032/clock/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 # $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15SHELL = @SHELL@
     16
    617srcdir = @srcdir@
    718top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = sh/sh7032/clock
    10 
     19VPATH = @srcdir@
     20prefix = @prefix@
     21exec_prefix = @exec_prefix@
     22
     23bindir = @bindir@
     24sbindir = @sbindir@
     25libexecdir = @libexecdir@
     26datadir = @datadir@
     27sysconfdir = @sysconfdir@
     28sharedstatedir = @sharedstatedir@
     29localstatedir = @localstatedir@
     30libdir = @libdir@
     31infodir = @infodir@
     32mandir = @mandir@
     33includedir = @includedir@
     34oldincludedir = /usr/include
     35
     36DESTDIR =
     37
     38pkgdatadir = $(datadir)/@PACKAGE@
     39pkglibdir = $(libdir)/@PACKAGE@
     40pkgincludedir = $(includedir)/@PACKAGE@
     41
     42top_builddir = ../..
     43
     44ACLOCAL = @ACLOCAL@
     45AUTOCONF = @AUTOCONF@
     46AUTOMAKE = @AUTOMAKE@
     47AUTOHEADER = @AUTOHEADER@
     48
     49INSTALL = @INSTALL@
     50INSTALL_PROGRAM = @INSTALL_PROGRAM@
     51INSTALL_DATA = @INSTALL_DATA@
     52INSTALL_SCRIPT = @INSTALL_SCRIPT@
     53INSTALL_STRIP_FLAG =
     54transform = @program_transform_name@
     55
     56NORMAL_INSTALL = :
     57PRE_INSTALL = :
     58POST_INSTALL = :
     59NORMAL_UNINSTALL = :
     60PRE_UNINSTALL = :
     61POST_UNINSTALL = :
     62build_alias = @build_alias@
     63build_triplet = @build@
     64host_alias = @host_alias@
     65host_triplet = @host@
     66target_alias = @target_alias@
     67target_triplet = @target@
     68CC = @CC@
     69CC_FOR_TARGET = @CC_FOR_TARGET@
     70CPP = @CPP@
     71GCCSED = @GCCSED@
     72INSTALL_CHANGE = @INSTALL_CHANGE@
     73MAINT = @MAINT@
     74MAKEINFO = @MAKEINFO@
     75PACKAGE = @PACKAGE@
     76PACKHEX = @PACKHEX@
     77PROJECT_INCLUDE = @PROJECT_INCLUDE@
     78PROJECT_RELEASE = @PROJECT_RELEASE@
     79PROJECT_ROOT = @PROJECT_ROOT@
     80RTEMS_BSP = @RTEMS_BSP@
     81RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     82RTEMS_CPU = @RTEMS_CPU@
     83RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     84RTEMS_HOST = @RTEMS_HOST@
     85RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1186RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
     87RTEMS_TOPdir = @RTEMS_TOPdir@
     88VERSION = @VERSION@
     89
     90AUTOMAKE_OPTIONS = foreign 1.4
    1591
    1692PGM = ${ARCH}/clock.rel
    1793
    18 # C source names, if any, go here -- minus the .c
    19 C_PIECES = ckinit
    20 C_FILES = $(C_PIECES:%=%.c)
    21 C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
    22 
    23 H_FILES =
    24 
    25 # Assembly source names, if any, go here -- minus the .S
    26 S_PIECES =
    27 S_FILES = $(S_PIECES:%=%.S)
     94C_FILES = ckinit.c
     95C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
     96
     97H_FILES =
     98
     99S_FILES =
    28100S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
    29101
    30 SRCS = $(C_FILES) $(H_FILES) $(S_FILES)
    31102OBJS = $(C_O_FILES) $(S_O_FILES)
    32 
    33 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    34 include $(RTEMS_ROOT)/make/leaf.cfg
    35 
    36 INSTALL_CHANGE = @INSTALL_CHANGE@
    37103
    38104#
     
    40106#
    41107
    42 DEFINES +=
    43 CPPFLAGS +=
    44 CFLAGS += $(CFLAGS_OS_V)
    45 
    46 LD_PATHS +=
    47 LD_LIBS +=
    48 LDFLAGS +=
    49 
    50 #
    51 # Add your list of files to delete here.  The config files
    52 #  already know how to delete some stuff, so you may want
    53 #  to just run 'make clean' first to see what gets missed.
    54 #  'make clobber' already includes 'make clean'
    55 #
    56 
    57 CLEAN_ADDITIONS +=
    58 CLOBBER_ADDITIONS +=
     108AM_CFLAGS =  $(CFLAGS_OS_V)
     109
     110EXTRA_DIST = $(C_FILES) $(S_FILES)
     111mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     112CONFIG_CLEAN_FILES =
     113DIST_COMMON =  Makefile.am Makefile.in
     114
     115
     116DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     117
     118TAR = gtar
     119GZIP_ENV = --best
     120all: all-redirect
     121.SUFFIXES:
     122$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
     123        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7032/clock/Makefile
     124
     125Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
     126        cd $(top_builddir) \
     127          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     128
     129tags: TAGS
     130TAGS:
     131
     132
     133distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     134
     135subdir = sh7032/clock
     136
     137distdir: $(DISTFILES)
     138        here=`cd $(top_builddir) && pwd`; \
     139        top_distdir=`cd $(top_distdir) && pwd`; \
     140        distdir=`cd $(distdir) && pwd`; \
     141        cd $(top_srcdir) \
     142          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7032/clock/Makefile
     143        @for file in $(DISTFILES); do \
     144          d=$(srcdir); \
     145          if test -d $$d/$$file; then \
     146            cp -pr $$d/$$file $(distdir)/$$file; \
     147          else \
     148            test -f $(distdir)/$$file \
     149            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     150            || cp -p $$d/$$file $(distdir)/$$file || :; \
     151          fi; \
     152        done
     153info-am:
     154info: info-am
     155dvi-am:
     156dvi: dvi-am
     157check-am: all-am
     158check: check-am
     159installcheck-am:
     160installcheck: installcheck-am
     161install-exec-am:
     162install-exec: install-exec-am
     163
     164install-data-am:
     165install-data: install-data-am
     166
     167install-am: all-am
     168        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     169install: install-am
     170uninstall-am:
     171uninstall: uninstall-am
     172all-am: Makefile
     173all-redirect: all-am
     174install-strip:
     175        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     176installdirs:
     177
     178
     179mostlyclean-generic:
     180
     181clean-generic:
     182
     183distclean-generic:
     184        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     185        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     186
     187maintainer-clean-generic:
     188mostlyclean-am:  mostlyclean-generic
     189
     190mostlyclean: mostlyclean-am
     191
     192clean-am:  clean-generic mostlyclean-am
     193
     194clean: clean-am
     195
     196distclean-am:  distclean-generic clean-am
     197
     198distclean: distclean-am
     199
     200maintainer-clean-am:  maintainer-clean-generic distclean-am
     201        @echo "This command is intended for maintainers to use;"
     202        @echo "it deletes files that may require special tools to rebuild."
     203
     204maintainer-clean: maintainer-clean-am
     205
     206.PHONY: tags distdir info-am info dvi-am dvi check check-am \
     207installcheck-am installcheck install-exec-am install-exec \
     208install-data-am install-data install-am install uninstall-am uninstall \
     209all-redirect all-am all installdirs mostlyclean-generic \
     210distclean-generic clean-generic maintainer-clean-generic clean \
     211mostlyclean distclean maintainer-clean
     212
     213
     214include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
     215include $(RTEMS_ROOT)/make/leaf.cfg
    59216
    60217${PGM}: ${OBJS}
    61218        ${make-rel}
    62219
    63 all: ${ARCH} $(SRCS) $(PGM)
    64 
    65 # the .rel file built here will be put into libbsp.a by
    66 #    libbsp/sh/BSP/wrapup/Makefile
    67 install: all
    68 
    69 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    70         cd $(top_builddir) \
    71          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     220all: ${ARCH} $(PGM)
     221
     222debug-am:
     223debug: debug-am
     224.PHONY: debug debug-am
     225
     226profile-am:
     227profile: profile-am
     228.PHONY: profile profile-am
     229
     230preinstall-am: $(PREINSTALL_FILES)
     231preinstall: preinstall-am
     232.PHONY: preinstall preinstall-am
     233
     234depend-am:
     235depend: depend-am
     236.PHONY: depend depend-am
     237
     238# Tell versions [3.59,3.63) of GNU make to not export all variables.
     239# Otherwise a system limit (for SysV at least) may be exceeded.
     240.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7032/delay/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15SHELL = @SHELL@
     16
    617srcdir = @srcdir@
    718top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = sh/sh7032/delay
    10 
     19VPATH = @srcdir@
     20prefix = @prefix@
     21exec_prefix = @exec_prefix@
     22
     23bindir = @bindir@
     24sbindir = @sbindir@
     25libexecdir = @libexecdir@
     26datadir = @datadir@
     27sysconfdir = @sysconfdir@
     28sharedstatedir = @sharedstatedir@
     29localstatedir = @localstatedir@
     30libdir = @libdir@
     31infodir = @infodir@
     32mandir = @mandir@
     33includedir = @includedir@
     34oldincludedir = /usr/include
     35
     36DESTDIR =
     37
     38pkgdatadir = $(datadir)/@PACKAGE@
     39pkglibdir = $(libdir)/@PACKAGE@
     40pkgincludedir = $(includedir)/@PACKAGE@
     41
     42top_builddir = ../..
     43
     44ACLOCAL = @ACLOCAL@
     45AUTOCONF = @AUTOCONF@
     46AUTOMAKE = @AUTOMAKE@
     47AUTOHEADER = @AUTOHEADER@
     48
     49INSTALL = @INSTALL@
     50INSTALL_PROGRAM = @INSTALL_PROGRAM@
     51INSTALL_DATA = @INSTALL_DATA@
     52INSTALL_SCRIPT = @INSTALL_SCRIPT@
     53INSTALL_STRIP_FLAG =
     54transform = @program_transform_name@
     55
     56NORMAL_INSTALL = :
     57PRE_INSTALL = :
     58POST_INSTALL = :
     59NORMAL_UNINSTALL = :
     60PRE_UNINSTALL = :
     61POST_UNINSTALL = :
     62build_alias = @build_alias@
     63build_triplet = @build@
     64host_alias = @host_alias@
     65host_triplet = @host@
     66target_alias = @target_alias@
     67target_triplet = @target@
     68CC = @CC@
     69CC_FOR_TARGET = @CC_FOR_TARGET@
     70CPP = @CPP@
     71GCCSED = @GCCSED@
     72INSTALL_CHANGE = @INSTALL_CHANGE@
     73MAINT = @MAINT@
     74MAKEINFO = @MAKEINFO@
     75PACKAGE = @PACKAGE@
     76PACKHEX = @PACKHEX@
     77PROJECT_INCLUDE = @PROJECT_INCLUDE@
     78PROJECT_RELEASE = @PROJECT_RELEASE@
     79PROJECT_ROOT = @PROJECT_ROOT@
     80RTEMS_BSP = @RTEMS_BSP@
     81RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     82RTEMS_CPU = @RTEMS_CPU@
     83RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     84RTEMS_HOST = @RTEMS_HOST@
     85RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1186RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
     87RTEMS_TOPdir = @RTEMS_TOPdir@
     88VERSION = @VERSION@
     89
     90AUTOMAKE_OPTIONS = foreign 1.4
    1591
    1692PGM = ${ARCH}/delay.rel
    1793
    18 # C source names, if any, go here -- minus the .c
    19 C_PIECES = delay
    20 C_FILES = $(C_PIECES:%=%.c)
    21 C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
    22 
    23 H_FILES =
    24 
    25 # Assembly source names, if any, go here -- minus the .S
    26 S_PIECES =
    27 S_FILES = $(S_PIECES:%=%.S)
     94C_FILES = delay.c
     95C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
     96
     97H_FILES =
     98
     99S_FILES =
    28100S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
    29101
    30 SRCS = $(DOCS) $(C_FILES) $(H_FILES)
    31102OBJS = $(C_O_FILES)
     103
     104EXTRA_DIST = $(C_FILES) $(S_FILES)
     105mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     106CONFIG_CLEAN_FILES =
     107DIST_COMMON =  Makefile.am Makefile.in
     108
     109
     110DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     111
     112TAR = gtar
     113GZIP_ENV = --best
     114all: all-redirect
     115.SUFFIXES:
     116$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
     117        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7032/delay/Makefile
     118
     119Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
     120        cd $(top_builddir) \
     121          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     122
     123tags: TAGS
     124TAGS:
     125
     126
     127distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     128
     129subdir = sh7032/delay
     130
     131distdir: $(DISTFILES)
     132        here=`cd $(top_builddir) && pwd`; \
     133        top_distdir=`cd $(top_distdir) && pwd`; \
     134        distdir=`cd $(distdir) && pwd`; \
     135        cd $(top_srcdir) \
     136          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7032/delay/Makefile
     137        @for file in $(DISTFILES); do \
     138          d=$(srcdir); \
     139          if test -d $$d/$$file; then \
     140            cp -pr $$d/$$file $(distdir)/$$file; \
     141          else \
     142            test -f $(distdir)/$$file \
     143            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     144            || cp -p $$d/$$file $(distdir)/$$file || :; \
     145          fi; \
     146        done
     147info-am:
     148info: info-am
     149dvi-am:
     150dvi: dvi-am
     151check-am: all-am
     152check: check-am
     153installcheck-am:
     154installcheck: installcheck-am
     155install-exec-am:
     156install-exec: install-exec-am
     157
     158install-data-am:
     159install-data: install-data-am
     160
     161install-am: all-am
     162        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     163install: install-am
     164uninstall-am:
     165uninstall: uninstall-am
     166all-am: Makefile
     167all-redirect: all-am
     168install-strip:
     169        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     170installdirs:
     171
     172
     173mostlyclean-generic:
     174
     175clean-generic:
     176
     177distclean-generic:
     178        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     179        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     180
     181maintainer-clean-generic:
     182mostlyclean-am:  mostlyclean-generic
     183
     184mostlyclean: mostlyclean-am
     185
     186clean-am:  clean-generic mostlyclean-am
     187
     188clean: clean-am
     189
     190distclean-am:  distclean-generic clean-am
     191
     192distclean: distclean-am
     193
     194maintainer-clean-am:  maintainer-clean-generic distclean-am
     195        @echo "This command is intended for maintainers to use;"
     196        @echo "it deletes files that may require special tools to rebuild."
     197
     198maintainer-clean: maintainer-clean-am
     199
     200.PHONY: tags distdir info-am info dvi-am dvi check check-am \
     201installcheck-am installcheck install-exec-am install-exec \
     202install-data-am install-data install-am install uninstall-am uninstall \
     203all-redirect all-am all installdirs mostlyclean-generic \
     204distclean-generic clean-generic maintainer-clean-generic clean \
     205mostlyclean distclean maintainer-clean
     206
    32207
    33208include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    34209include $(RTEMS_ROOT)/make/leaf.cfg
    35 
    36 INSTALL_CHANGE = @INSTALL_CHANGE@
    37210
    38211#
     
    40213#
    41214
    42 DEFINES +=
    43 CPPFLAGS +=
    44 CFLAGS +=
    45 
    46 LD_PATHS +=
    47 LD_LIBS +=
    48 LDFLAGS +=
    49 
    50 #
    51 # Add your list of files to delete here.  The config files
    52 #  already know how to delete some stuff, so you may want
    53 #  to just run 'make clean' first to see what gets missed.
    54 #  'make clobber' already includes 'make clean'
    55 #
    56 
    57 CLEAN_ADDITIONS +=
    58 CLOBBER_ADDITIONS +=
    59 
    60215${PGM}: ${OBJS}
    61216        $(make-rel)
    62217
    63 all: ${ARCH} $(SRCS) $(PGM)
    64 
    65 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    66 install: all
    67 
    68 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    69         cd $(top_builddir) \
    70          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     218all: ${ARCH} $(PGM)
     219
     220debug-am:
     221debug: debug-am
     222.PHONY: debug debug-am
     223
     224profile-am:
     225profile: profile-am
     226.PHONY: profile profile-am
     227
     228preinstall-am: $(PREINSTALL_FILES)
     229preinstall: preinstall-am
     230.PHONY: preinstall preinstall-am
     231
     232depend-am:
     233depend: depend-am
     234.PHONY: depend depend-am
     235
     236# Tell versions [3.59,3.63) of GNU make to not export all variables.
     237# Otherwise a system limit (for SysV at least) may be exceeded.
     238.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7032/include/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 # $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15SHELL = @SHELL@
     16
    617srcdir = @srcdir@
    718top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = sh/sh7032/include
    10 
     19VPATH = @srcdir@
     20prefix = @prefix@
     21exec_prefix = @exec_prefix@
     22
     23bindir = @bindir@
     24sbindir = @sbindir@
     25libexecdir = @libexecdir@
     26datadir = @datadir@
     27sysconfdir = @sysconfdir@
     28sharedstatedir = @sharedstatedir@
     29localstatedir = @localstatedir@
     30libdir = @libdir@
     31infodir = @infodir@
     32mandir = @mandir@
     33includedir = @includedir@
     34oldincludedir = /usr/include
     35
     36DESTDIR =
     37
     38pkgdatadir = $(datadir)/@PACKAGE@
     39pkglibdir = $(libdir)/@PACKAGE@
     40pkgincludedir = $(includedir)/@PACKAGE@
     41
     42top_builddir = ../..
     43
     44ACLOCAL = @ACLOCAL@
     45AUTOCONF = @AUTOCONF@
     46AUTOMAKE = @AUTOMAKE@
     47AUTOHEADER = @AUTOHEADER@
     48
     49INSTALL = @INSTALL@
     50INSTALL_PROGRAM = @INSTALL_PROGRAM@
     51INSTALL_DATA = @INSTALL_DATA@
     52INSTALL_SCRIPT = @INSTALL_SCRIPT@
     53INSTALL_STRIP_FLAG =
     54transform = @program_transform_name@
     55
     56NORMAL_INSTALL = :
     57PRE_INSTALL = :
     58POST_INSTALL = :
     59NORMAL_UNINSTALL = :
     60PRE_UNINSTALL = :
     61POST_UNINSTALL = :
     62build_alias = @build_alias@
     63build_triplet = @build@
     64host_alias = @host_alias@
     65host_triplet = @host@
     66target_alias = @target_alias@
     67target_triplet = @target@
     68CC = @CC@
     69CC_FOR_TARGET = @CC_FOR_TARGET@
     70CPP = @CPP@
     71GCCSED = @GCCSED@
     72INSTALL_CHANGE = @INSTALL_CHANGE@
     73MAINT = @MAINT@
     74MAKEINFO = @MAKEINFO@
     75PACKAGE = @PACKAGE@
     76PACKHEX = @PACKHEX@
     77PROJECT_INCLUDE = @PROJECT_INCLUDE@
     78PROJECT_RELEASE = @PROJECT_RELEASE@
     79PROJECT_ROOT = @PROJECT_ROOT@
     80RTEMS_BSP = @RTEMS_BSP@
     81RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     82RTEMS_CPU = @RTEMS_CPU@
     83RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     84RTEMS_HOST = @RTEMS_HOST@
     85RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1186RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 H_FILES = $(srcdir)/null.h $(srcdir)/sci.h $(srcdir)/sh7_pfc.h \
    17     $(srcdir)/sh7_sci.h
    18 
    19 SRCS = $(H_FILES)
    20 
    21 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    22 include $(RTEMS_ROOT)/make/leaf.cfg
    23 
    24 INSTALL_CHANGE = @INSTALL_CHANGE@
    25 mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
    26 
    27 INSTALLDIRS = $(PROJECT_INCLUDE)/sh
    28 
    29 $(INSTALLDIRS):
    30         @$(mkinstalldirs) $(INSTALLDIRS)
    31 
    32 CLEAN_ADDITIONS +=
    33 CLOBBER_ADDITIONS +=
    34 
    35 all: install
     87RTEMS_TOPdir = @RTEMS_TOPdir@
     88VERSION = @VERSION@
     89
     90AUTOMAKE_OPTIONS = foreign 1.4
     91
     92H_FILES = null.h sci.h sh7_pfc.h sh7_sci.h
     93noinst_HEADERS = $(H_FILES)
    3694
    3795# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
    3896#       file name conflicts
    3997
    40 install:
    41         $(mkinstalldirs) $(PROJECT_INCLUDE)/sh
    42         @$(INSTALL_CHANGE) -m 644 $(H_FILES) $(PROJECT_INCLUDE)/sh
    43 
    44 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     98TMPINSTALL_FILES = $(PROJECT_INCLUDE)/sh     $(H_FILES:%=$(PROJECT_INCLUDE)/sh/%)
     99
     100mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     101CONFIG_CLEAN_FILES =
     102HEADERS =  $(noinst_HEADERS)
     103
     104DIST_COMMON =  Makefile.am Makefile.in
     105
     106
     107DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     108
     109TAR = gtar
     110GZIP_ENV = --best
     111all: all-redirect
     112.SUFFIXES:
     113$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
     114        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7032/include/Makefile
     115
     116Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    45117        cd $(top_builddir) \
    46          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     118          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     119
     120
     121tags: TAGS
     122
     123ID: $(HEADERS) $(SOURCES) $(LISP)
     124        list='$(SOURCES) $(HEADERS)'; \
     125        unique=`for i in $$list; do echo $$i; done | \
     126          awk '    { files[$$0] = 1; } \
     127               END { for (i in files) print i; }'`; \
     128        here=`pwd` && cd $(srcdir) \
     129          && mkid -f$$here/ID $$unique $(LISP)
     130
     131TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     132        tags=; \
     133        here=`pwd`; \
     134        list='$(SOURCES) $(HEADERS)'; \
     135        unique=`for i in $$list; do echo $$i; done | \
     136          awk '    { files[$$0] = 1; } \
     137               END { for (i in files) print i; }'`; \
     138        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     139          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     140
     141mostlyclean-tags:
     142
     143clean-tags:
     144
     145distclean-tags:
     146        -rm -f TAGS ID
     147
     148maintainer-clean-tags:
     149
     150distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     151
     152subdir = sh7032/include
     153
     154distdir: $(DISTFILES)
     155        here=`cd $(top_builddir) && pwd`; \
     156        top_distdir=`cd $(top_distdir) && pwd`; \
     157        distdir=`cd $(distdir) && pwd`; \
     158        cd $(top_srcdir) \
     159          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7032/include/Makefile
     160        @for file in $(DISTFILES); do \
     161          d=$(srcdir); \
     162          if test -d $$d/$$file; then \
     163            cp -pr $$d/$$file $(distdir)/$$file; \
     164          else \
     165            test -f $(distdir)/$$file \
     166            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     167            || cp -p $$d/$$file $(distdir)/$$file || :; \
     168          fi; \
     169        done
     170info-am:
     171info: info-am
     172dvi-am:
     173dvi: dvi-am
     174check-am: all-am
     175check: check-am
     176installcheck-am:
     177installcheck: installcheck-am
     178install-exec-am:
     179install-exec: install-exec-am
     180
     181install-data-am:
     182install-data: install-data-am
     183
     184install-am: all-am
     185        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     186install: install-am
     187uninstall-am:
     188uninstall: uninstall-am
     189all-am: Makefile $(HEADERS) all-local
     190all-redirect: all-am
     191install-strip:
     192        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     193installdirs:
     194
     195
     196mostlyclean-generic:
     197
     198clean-generic:
     199
     200distclean-generic:
     201        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     202        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     203
     204maintainer-clean-generic:
     205mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     206
     207mostlyclean: mostlyclean-am
     208
     209clean-am:  clean-tags clean-generic mostlyclean-am
     210
     211clean: clean-am
     212
     213distclean-am:  distclean-tags distclean-generic clean-am
     214
     215distclean: distclean-am
     216
     217maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     218                distclean-am
     219        @echo "This command is intended for maintainers to use;"
     220        @echo "it deletes files that may require special tools to rebuild."
     221
     222maintainer-clean: maintainer-clean-am
     223
     224.PHONY: tags mostlyclean-tags distclean-tags clean-tags \
     225maintainer-clean-tags distdir info-am info dvi-am dvi check check-am \
     226installcheck-am installcheck install-exec-am install-exec \
     227install-data-am install-data install-am install uninstall-am uninstall \
     228all-local all-redirect all-am all installdirs mostlyclean-generic \
     229distclean-generic clean-generic maintainer-clean-generic clean \
     230mostlyclean distclean maintainer-clean
     231
     232
     233$(PROJECT_INCLUDE)/sh:
     234        $(mkinstalldirs) $@
     235
     236$(PROJECT_INCLUDE)/sh/%.h: %.h
     237        $(INSTALL_DATA) $< $@
     238
     239all-local: $(TMPINSTALL_FILES)
     240
     241debug-am:
     242debug: debug-am
     243.PHONY: debug debug-am
     244
     245profile-am:
     246profile: profile-am
     247.PHONY: profile profile-am
     248
     249preinstall-am: $(PREINSTALL_FILES)
     250preinstall: preinstall-am
     251.PHONY: preinstall preinstall-am
     252
     253depend-am:
     254depend: depend-am
     255.PHONY: depend depend-am
     256
     257# Tell versions [3.59,3.63) of GNU make to not export all variables.
     258# Otherwise a system limit (for SysV at least) may be exceeded.
     259.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7032/null/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15SHELL = @SHELL@
     16
    617srcdir = @srcdir@
    718top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = sh/sh7032/null
    10 
     19VPATH = @srcdir@
     20prefix = @prefix@
     21exec_prefix = @exec_prefix@
     22
     23bindir = @bindir@
     24sbindir = @sbindir@
     25libexecdir = @libexecdir@
     26datadir = @datadir@
     27sysconfdir = @sysconfdir@
     28sharedstatedir = @sharedstatedir@
     29localstatedir = @localstatedir@
     30libdir = @libdir@
     31infodir = @infodir@
     32mandir = @mandir@
     33includedir = @includedir@
     34oldincludedir = /usr/include
     35
     36DESTDIR =
     37
     38pkgdatadir = $(datadir)/@PACKAGE@
     39pkglibdir = $(libdir)/@PACKAGE@
     40pkgincludedir = $(includedir)/@PACKAGE@
     41
     42top_builddir = ../..
     43
     44ACLOCAL = @ACLOCAL@
     45AUTOCONF = @AUTOCONF@
     46AUTOMAKE = @AUTOMAKE@
     47AUTOHEADER = @AUTOHEADER@
     48
     49INSTALL = @INSTALL@
     50INSTALL_PROGRAM = @INSTALL_PROGRAM@
     51INSTALL_DATA = @INSTALL_DATA@
     52INSTALL_SCRIPT = @INSTALL_SCRIPT@
     53INSTALL_STRIP_FLAG =
     54transform = @program_transform_name@
     55
     56NORMAL_INSTALL = :
     57PRE_INSTALL = :
     58POST_INSTALL = :
     59NORMAL_UNINSTALL = :
     60PRE_UNINSTALL = :
     61POST_UNINSTALL = :
     62build_alias = @build_alias@
     63build_triplet = @build@
     64host_alias = @host_alias@
     65host_triplet = @host@
     66target_alias = @target_alias@
     67target_triplet = @target@
     68CC = @CC@
     69CC_FOR_TARGET = @CC_FOR_TARGET@
     70CPP = @CPP@
     71GCCSED = @GCCSED@
     72INSTALL_CHANGE = @INSTALL_CHANGE@
     73MAINT = @MAINT@
     74MAKEINFO = @MAKEINFO@
     75PACKAGE = @PACKAGE@
     76PACKHEX = @PACKHEX@
     77PROJECT_INCLUDE = @PROJECT_INCLUDE@
     78PROJECT_RELEASE = @PROJECT_RELEASE@
     79PROJECT_ROOT = @PROJECT_ROOT@
     80RTEMS_BSP = @RTEMS_BSP@
     81RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     82RTEMS_CPU = @RTEMS_CPU@
     83RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     84RTEMS_HOST = @RTEMS_HOST@
     85RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1186RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
     87RTEMS_TOPdir = @RTEMS_TOPdir@
     88VERSION = @VERSION@
     89
     90AUTOMAKE_OPTIONS = foreign 1.4
    1591
    1692PGM = ${ARCH}/null.rel
    1793
    18 # C source names, if any, go here -- minus the .c
    19 C_PIECES = open close read write init cntrl
    20 C_FILES = $(C_PIECES:%=%.c)
    21 C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
    22 
    23 H_FILES =
    24 
    25 # Assembly source names, if any, go here -- minus the .S
    26 S_PIECES =
    27 S_FILES = $(S_PIECES:%=%.S)
     94C_FILES = open.c close.c read.c write.c init.c cntrl.c
     95C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
     96
     97H_FILES =
     98
     99S_FILES =
    28100S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
    29101
    30 SRCS = $(DOCS) $(C_FILES) $(H_FILES)
    31102OBJS = $(C_O_FILES)
     103
     104EXTRA_DIST = $(C_FILES) $(S_FILES)
     105mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     106CONFIG_CLEAN_FILES =
     107DIST_COMMON =  Makefile.am Makefile.in
     108
     109
     110DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     111
     112TAR = gtar
     113GZIP_ENV = --best
     114all: all-redirect
     115.SUFFIXES:
     116$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
     117        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7032/null/Makefile
     118
     119Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
     120        cd $(top_builddir) \
     121          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     122
     123tags: TAGS
     124TAGS:
     125
     126
     127distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     128
     129subdir = sh7032/null
     130
     131distdir: $(DISTFILES)
     132        here=`cd $(top_builddir) && pwd`; \
     133        top_distdir=`cd $(top_distdir) && pwd`; \
     134        distdir=`cd $(distdir) && pwd`; \
     135        cd $(top_srcdir) \
     136          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7032/null/Makefile
     137        @for file in $(DISTFILES); do \
     138          d=$(srcdir); \
     139          if test -d $$d/$$file; then \
     140            cp -pr $$d/$$file $(distdir)/$$file; \
     141          else \
     142            test -f $(distdir)/$$file \
     143            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     144            || cp -p $$d/$$file $(distdir)/$$file || :; \
     145          fi; \
     146        done
     147info-am:
     148info: info-am
     149dvi-am:
     150dvi: dvi-am
     151check-am: all-am
     152check: check-am
     153installcheck-am:
     154installcheck: installcheck-am
     155install-exec-am:
     156install-exec: install-exec-am
     157
     158install-data-am:
     159install-data: install-data-am
     160
     161install-am: all-am
     162        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     163install: install-am
     164uninstall-am:
     165uninstall: uninstall-am
     166all-am: Makefile
     167all-redirect: all-am
     168install-strip:
     169        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     170installdirs:
     171
     172
     173mostlyclean-generic:
     174
     175clean-generic:
     176
     177distclean-generic:
     178        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     179        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     180
     181maintainer-clean-generic:
     182mostlyclean-am:  mostlyclean-generic
     183
     184mostlyclean: mostlyclean-am
     185
     186clean-am:  clean-generic mostlyclean-am
     187
     188clean: clean-am
     189
     190distclean-am:  distclean-generic clean-am
     191
     192distclean: distclean-am
     193
     194maintainer-clean-am:  maintainer-clean-generic distclean-am
     195        @echo "This command is intended for maintainers to use;"
     196        @echo "it deletes files that may require special tools to rebuild."
     197
     198maintainer-clean: maintainer-clean-am
     199
     200.PHONY: tags distdir info-am info dvi-am dvi check check-am \
     201installcheck-am installcheck install-exec-am install-exec \
     202install-data-am install-data install-am install uninstall-am uninstall \
     203all-redirect all-am all installdirs mostlyclean-generic \
     204distclean-generic clean-generic maintainer-clean-generic clean \
     205mostlyclean distclean maintainer-clean
     206
    32207
    33208include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    34209include $(RTEMS_ROOT)/make/leaf.cfg
    35 
    36 INSTALL_CHANGE = @INSTALL_CHANGE@
    37210
    38211#
     
    40213#
    41214
    42 DEFINES +=
    43 CPPFLAGS +=
    44 CFLAGS +=
    45 
    46 LD_PATHS +=
    47 LD_LIBS +=
    48 LDFLAGS +=
    49 
    50 #
    51 # Add your list of files to delete here.  The config files
    52 #  already know how to delete some stuff, so you may want
    53 #  to just run 'make clean' first to see what gets missed.
    54 #  'make clobber' already includes 'make clean'
    55 #
    56 
    57 CLEAN_ADDITIONS +=
    58 CLOBBER_ADDITIONS +=
    59 
    60215${PGM}: ${OBJS}
    61216        $(make-rel)
    62217
    63 all: ${ARCH} $(SRCS) $(PGM)
    64 
    65 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    66 install: all
    67 
    68 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    69         cd $(top_builddir) \
    70          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     218all: ${ARCH} $(PGM)
     219
     220debug-am:
     221debug: debug-am
     222.PHONY: debug debug-am
     223
     224profile-am:
     225profile: profile-am
     226.PHONY: profile profile-am
     227
     228preinstall-am: $(PREINSTALL_FILES)
     229preinstall: preinstall-am
     230.PHONY: preinstall preinstall-am
     231
     232depend-am:
     233depend: depend-am
     234.PHONY: depend depend-am
     235
     236# Tell versions [3.59,3.63) of GNU make to not export all variables.
     237# Otherwise a system limit (for SysV at least) may be exceeded.
     238.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7032/sci/Makefile.in

    r5bce35b r35d7b15  
    1 ##
    2 ##  $Id$
    3 ##
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15SHELL = @SHELL@
     16
    617srcdir = @srcdir@
    718top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = sh/sh7032/sci
    10 
     19VPATH = @srcdir@
     20prefix = @prefix@
     21exec_prefix = @exec_prefix@
     22
     23bindir = @bindir@
     24sbindir = @sbindir@
     25libexecdir = @libexecdir@
     26datadir = @datadir@
     27sysconfdir = @sysconfdir@
     28sharedstatedir = @sharedstatedir@
     29localstatedir = @localstatedir@
     30libdir = @libdir@
     31infodir = @infodir@
     32mandir = @mandir@
     33includedir = @includedir@
     34oldincludedir = /usr/include
     35
     36DESTDIR =
     37
     38pkgdatadir = $(datadir)/@PACKAGE@
     39pkglibdir = $(libdir)/@PACKAGE@
     40pkgincludedir = $(includedir)/@PACKAGE@
     41
     42top_builddir = ../..
     43
     44ACLOCAL = @ACLOCAL@
     45AUTOCONF = @AUTOCONF@
     46AUTOMAKE = @AUTOMAKE@
     47AUTOHEADER = @AUTOHEADER@
     48
     49INSTALL = @INSTALL@
     50INSTALL_PROGRAM = @INSTALL_PROGRAM@
     51INSTALL_DATA = @INSTALL_DATA@
     52INSTALL_SCRIPT = @INSTALL_SCRIPT@
     53INSTALL_STRIP_FLAG =
     54transform = @program_transform_name@
     55
     56NORMAL_INSTALL = :
     57PRE_INSTALL = :
     58POST_INSTALL = :
     59NORMAL_UNINSTALL = :
     60PRE_UNINSTALL = :
     61POST_UNINSTALL = :
     62build_alias = @build_alias@
     63build_triplet = @build@
     64host_alias = @host_alias@
     65host_triplet = @host@
     66target_alias = @target_alias@
     67target_triplet = @target@
     68CC = @CC@
     69CC_FOR_TARGET = @CC_FOR_TARGET@
     70CPP = @CPP@
     71GCCSED = @GCCSED@
     72INSTALL_CHANGE = @INSTALL_CHANGE@
     73MAINT = @MAINT@
     74MAKEINFO = @MAKEINFO@
     75PACKAGE = @PACKAGE@
     76PACKHEX = @PACKHEX@
     77PROJECT_INCLUDE = @PROJECT_INCLUDE@
     78PROJECT_RELEASE = @PROJECT_RELEASE@
     79PROJECT_ROOT = @PROJECT_ROOT@
     80RTEMS_BSP = @RTEMS_BSP@
     81RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     82RTEMS_CPU = @RTEMS_CPU@
     83RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     84RTEMS_HOST = @RTEMS_HOST@
     85RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1186RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
     87RTEMS_TOPdir = @RTEMS_TOPdir@
     88VERSION = @VERSION@
     89
     90AUTOMAKE_OPTIONS = foreign 1.4
    1591
    1692PGM = ${ARCH}/sci.rel
    1793
    18 # C source names, if any, go here -- minus the .c
    19 C_PIECES = sci
    20 C_FILES = $(C_PIECES:%=%.c)
    21 C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
    22 
    23 H_FILES =
    24 
    25 # Assembly source names, if any, go here -- minus the .s
    26 S_PIECES =
    27 S_FILES = $(S_PIECES:%=%.S)
     94C_FILES = sci.c
     95C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
     96
     97H_FILES =
     98
     99S_FILES =
    28100S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
    29101
    30 SRCS = $(C_FILES) $(H_FILES) $(S_FILES)
    31102OBJS = $(C_O_FILES) $(S_O_FILES)
     103
     104EXTRA_DIST = $(C_FILES) $(S_FILES)
     105mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     106CONFIG_CLEAN_FILES =
     107DIST_COMMON =  Makefile.am Makefile.in
     108
     109
     110DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     111
     112TAR = gtar
     113GZIP_ENV = --best
     114all: all-redirect
     115.SUFFIXES:
     116$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
     117        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7032/sci/Makefile
     118
     119Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
     120        cd $(top_builddir) \
     121          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     122
     123tags: TAGS
     124TAGS:
     125
     126
     127distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     128
     129subdir = sh7032/sci
     130
     131distdir: $(DISTFILES)
     132        here=`cd $(top_builddir) && pwd`; \
     133        top_distdir=`cd $(top_distdir) && pwd`; \
     134        distdir=`cd $(distdir) && pwd`; \
     135        cd $(top_srcdir) \
     136          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7032/sci/Makefile
     137        @for file in $(DISTFILES); do \
     138          d=$(srcdir); \
     139          if test -d $$d/$$file; then \
     140            cp -pr $$d/$$file $(distdir)/$$file; \
     141          else \
     142            test -f $(distdir)/$$file \
     143            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     144            || cp -p $$d/$$file $(distdir)/$$file || :; \
     145          fi; \
     146        done
     147info-am:
     148info: info-am
     149dvi-am:
     150dvi: dvi-am
     151check-am: all-am
     152check: check-am
     153installcheck-am:
     154installcheck: installcheck-am
     155install-exec-am:
     156install-exec: install-exec-am
     157
     158install-data-am:
     159install-data: install-data-am
     160
     161install-am: all-am
     162        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     163install: install-am
     164uninstall-am:
     165uninstall: uninstall-am
     166all-am: Makefile
     167all-redirect: all-am
     168install-strip:
     169        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     170installdirs:
     171
     172
     173mostlyclean-generic:
     174
     175clean-generic:
     176
     177distclean-generic:
     178        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     179        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     180
     181maintainer-clean-generic:
     182mostlyclean-am:  mostlyclean-generic
     183
     184mostlyclean: mostlyclean-am
     185
     186clean-am:  clean-generic mostlyclean-am
     187
     188clean: clean-am
     189
     190distclean-am:  distclean-generic clean-am
     191
     192distclean: distclean-am
     193
     194maintainer-clean-am:  maintainer-clean-generic distclean-am
     195        @echo "This command is intended for maintainers to use;"
     196        @echo "it deletes files that may require special tools to rebuild."
     197
     198maintainer-clean: maintainer-clean-am
     199
     200.PHONY: tags distdir info-am info dvi-am dvi check check-am \
     201installcheck-am installcheck install-exec-am install-exec \
     202install-data-am install-data install-am install uninstall-am uninstall \
     203all-redirect all-am all installdirs mostlyclean-generic \
     204distclean-generic clean-generic maintainer-clean-generic clean \
     205mostlyclean distclean maintainer-clean
     206
    32207
    33208include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    34209include $(RTEMS_ROOT)/make/leaf.cfg
    35 
    36 INSTALL_CHANGE = @INSTALL_CHANGE@
    37210
    38211#
     
    40213#
    41214
    42 DEFINES +=
    43 CPPFLAGS +=
    44 CFLAGS +=
    45 
    46 LD_PATHS +=
    47 LD_LIBS +=
    48 LDFLAGS +=
    49 
    50 #
    51 # Add your list of files to delete here.  The config files
    52 #  already know how to delete some stuff, so you may want
    53 #  to just run 'make clean' first to see what gets missed.
    54 #  'make clobber' already includes 'make clean'
    55 #
    56 
    57 CLEAN_ADDITIONS +=
    58 CLOBBER_ADDITIONS +=
    59 
    60215${PGM}: ${OBJS}
    61216        $(make-rel)
    62217
    63 all: ${ARCH} $(SRCS) $(PGM)
    64 
    65 # the .rel file built here will be put into libbsp.a by
    66 #       libbsp/sh/BSP/wrapup/Makefile
    67 install: all
    68 
    69 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    70         cd $(top_builddir) \
    71          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     218all: ${ARCH} $(PGM)
     219
     220debug-am:
     221debug: debug-am
     222.PHONY: debug debug-am
     223
     224profile-am:
     225profile: profile-am
     226.PHONY: profile profile-am
     227
     228preinstall-am: $(PREINSTALL_FILES)
     229preinstall: preinstall-am
     230.PHONY: preinstall preinstall-am
     231
     232depend-am:
     233depend: depend-am
     234.PHONY: depend depend-am
     235
     236# Tell versions [3.59,3.63) of GNU make to not export all variables.
     237# Otherwise a system limit (for SysV at least) may be exceeded.
     238.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7032/timer/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 #  $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15SHELL = @SHELL@
     16
    617srcdir = @srcdir@
    718top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = sh/sh7032/timer
    10 
     19VPATH = @srcdir@
     20prefix = @prefix@
     21exec_prefix = @exec_prefix@
     22
     23bindir = @bindir@
     24sbindir = @sbindir@
     25libexecdir = @libexecdir@
     26datadir = @datadir@
     27sysconfdir = @sysconfdir@
     28sharedstatedir = @sharedstatedir@
     29localstatedir = @localstatedir@
     30libdir = @libdir@
     31infodir = @infodir@
     32mandir = @mandir@
     33includedir = @includedir@
     34oldincludedir = /usr/include
     35
     36DESTDIR =
     37
     38pkgdatadir = $(datadir)/@PACKAGE@
     39pkglibdir = $(libdir)/@PACKAGE@
     40pkgincludedir = $(includedir)/@PACKAGE@
     41
     42top_builddir = ../..
     43
     44ACLOCAL = @ACLOCAL@
     45AUTOCONF = @AUTOCONF@
     46AUTOMAKE = @AUTOMAKE@
     47AUTOHEADER = @AUTOHEADER@
     48
     49INSTALL = @INSTALL@
     50INSTALL_PROGRAM = @INSTALL_PROGRAM@
     51INSTALL_DATA = @INSTALL_DATA@
     52INSTALL_SCRIPT = @INSTALL_SCRIPT@
     53INSTALL_STRIP_FLAG =
     54transform = @program_transform_name@
     55
     56NORMAL_INSTALL = :
     57PRE_INSTALL = :
     58POST_INSTALL = :
     59NORMAL_UNINSTALL = :
     60PRE_UNINSTALL = :
     61POST_UNINSTALL = :
     62build_alias = @build_alias@
     63build_triplet = @build@
     64host_alias = @host_alias@
     65host_triplet = @host@
     66target_alias = @target_alias@
     67target_triplet = @target@
     68CC = @CC@
     69CC_FOR_TARGET = @CC_FOR_TARGET@
     70CPP = @CPP@
     71GCCSED = @GCCSED@
     72INSTALL_CHANGE = @INSTALL_CHANGE@
     73MAINT = @MAINT@
     74MAKEINFO = @MAKEINFO@
     75PACKAGE = @PACKAGE@
     76PACKHEX = @PACKHEX@
     77PROJECT_INCLUDE = @PROJECT_INCLUDE@
     78PROJECT_RELEASE = @PROJECT_RELEASE@
     79PROJECT_ROOT = @PROJECT_ROOT@
     80RTEMS_BSP = @RTEMS_BSP@
     81RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     82RTEMS_CPU = @RTEMS_CPU@
     83RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     84RTEMS_HOST = @RTEMS_HOST@
     85RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1186RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
     87RTEMS_TOPdir = @RTEMS_TOPdir@
     88VERSION = @VERSION@
     89
     90AUTOMAKE_OPTIONS = foreign 1.4
    1691PGM = ${ARCH}/timer.rel
    1792
    18 # C source names, if any, go here -- minus the .c
    19 C_PIECES = timer
    20 C_FILES = $(C_PIECES:%=%.c)
    21 C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
    22 
    23 H_FILES =
    24 
    25 # Assembly source names, if any, go here -- minus the .S
    26 S_PIECES =
    27 S_FILES = $(S_PIECES:%=%.S)
     93C_FILES = timer.c
     94C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
     95
     96H_FILES =
     97
     98S_FILES =
    2899S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
    29100
    30 SRCS = $(C_FILES) $(H_FILES) $(S_FILES)
    31101OBJS = $(C_O_FILES) $(S_O_FILES)
     102
     103EXTRA_DIST = $(C_FILES) $(S_FILES)
     104mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     105CONFIG_CLEAN_FILES =
     106DIST_COMMON =  Makefile.am Makefile.in
     107
     108
     109DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     110
     111TAR = gtar
     112GZIP_ENV = --best
     113all: all-redirect
     114.SUFFIXES:
     115$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
     116        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7032/timer/Makefile
     117
     118Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
     119        cd $(top_builddir) \
     120          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     121
     122tags: TAGS
     123TAGS:
     124
     125
     126distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     127
     128subdir = sh7032/timer
     129
     130distdir: $(DISTFILES)
     131        here=`cd $(top_builddir) && pwd`; \
     132        top_distdir=`cd $(top_distdir) && pwd`; \
     133        distdir=`cd $(distdir) && pwd`; \
     134        cd $(top_srcdir) \
     135          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7032/timer/Makefile
     136        @for file in $(DISTFILES); do \
     137          d=$(srcdir); \
     138          if test -d $$d/$$file; then \
     139            cp -pr $$d/$$file $(distdir)/$$file; \
     140          else \
     141            test -f $(distdir)/$$file \
     142            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     143            || cp -p $$d/$$file $(distdir)/$$file || :; \
     144          fi; \
     145        done
     146info-am:
     147info: info-am
     148dvi-am:
     149dvi: dvi-am
     150check-am: all-am
     151check: check-am
     152installcheck-am:
     153installcheck: installcheck-am
     154install-exec-am:
     155install-exec: install-exec-am
     156
     157install-data-am:
     158install-data: install-data-am
     159
     160install-am: all-am
     161        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     162install: install-am
     163uninstall-am:
     164uninstall: uninstall-am
     165all-am: Makefile
     166all-redirect: all-am
     167install-strip:
     168        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     169installdirs:
     170
     171
     172mostlyclean-generic:
     173
     174clean-generic:
     175
     176distclean-generic:
     177        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     178        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     179
     180maintainer-clean-generic:
     181mostlyclean-am:  mostlyclean-generic
     182
     183mostlyclean: mostlyclean-am
     184
     185clean-am:  clean-generic mostlyclean-am
     186
     187clean: clean-am
     188
     189distclean-am:  distclean-generic clean-am
     190
     191distclean: distclean-am
     192
     193maintainer-clean-am:  maintainer-clean-generic distclean-am
     194        @echo "This command is intended for maintainers to use;"
     195        @echo "it deletes files that may require special tools to rebuild."
     196
     197maintainer-clean: maintainer-clean-am
     198
     199.PHONY: tags distdir info-am info dvi-am dvi check check-am \
     200installcheck-am installcheck install-exec-am install-exec \
     201install-data-am install-data install-am install uninstall-am uninstall \
     202all-redirect all-am all installdirs mostlyclean-generic \
     203distclean-generic clean-generic maintainer-clean-generic clean \
     204mostlyclean distclean maintainer-clean
     205
    32206
    33207include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    34208include $(RTEMS_ROOT)/make/leaf.cfg
    35 
    36 INSTALL_CHANGE = @INSTALL_CHANGE@
    37209
    38210#
     
    40212#
    41213
    42 DEFINES +=
    43 CPPFLAGS +=
    44 CFLAGS +=
    45 
    46 LD_PATHS +=
    47 LD_LIBS +=
    48 LDFLAGS +=
    49 
    50 #
    51 # Add your list of files to delete here.  The config files
    52 #  already know how to delete some stuff, so you may want
    53 #  to just run 'make clean' first to see what gets missed.
    54 #  'make clobber' already includes 'make clean'
    55 #
    56 
    57 CLEAN_ADDITIONS +=
    58 CLOBBER_ADDITIONS +=
    59 
    60214${PGM}: ${OBJS}
    61215        $(make-rel)
    62216
    63 all: ${ARCH} $(SRCS) $(PGM)
    64 
    65 # the .rel file built here will be put into libbsp.a by
    66 # libbsp/sh/BSP/Makefile
    67 install: all
    68 
    69 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    70         cd $(top_builddir) \
    71          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     217all: ${ARCH} $(PGM)
     218
     219debug-am:
     220debug: debug-am
     221.PHONY: debug debug-am
     222
     223profile-am:
     224profile: profile-am
     225.PHONY: profile profile-am
     226
     227preinstall-am: $(PREINSTALL_FILES)
     228preinstall: preinstall-am
     229.PHONY: preinstall preinstall-am
     230
     231depend-am:
     232depend: depend-am
     233.PHONY: depend depend-am
     234
     235# Tell versions [3.59,3.63) of GNU make to not export all variables.
     236# Otherwise a system limit (for SysV at least) may be exceeded.
     237.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7045/Makefile.in

    r5bce35b r35d7b15  
    1 ##
    2 ## $Id$
    3 ##
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15
     16SHELL = @SHELL@
     17
    618srcdir = @srcdir@
    719top_srcdir = @top_srcdir@
    8 top_builddir = ../..
    9 subdir = sh/sh7045
    10 
     20VPATH = @srcdir@
     21prefix = @prefix@
     22exec_prefix = @exec_prefix@
     23
     24bindir = @bindir@
     25sbindir = @sbindir@
     26libexecdir = @libexecdir@
     27datadir = @datadir@
     28sysconfdir = @sysconfdir@
     29sharedstatedir = @sharedstatedir@
     30localstatedir = @localstatedir@
     31libdir = @libdir@
     32infodir = @infodir@
     33mandir = @mandir@
     34includedir = @includedir@
     35oldincludedir = /usr/include
     36
     37DESTDIR =
     38
     39pkgdatadir = $(datadir)/@PACKAGE@
     40pkglibdir = $(libdir)/@PACKAGE@
     41pkgincludedir = $(includedir)/@PACKAGE@
     42
     43top_builddir = ..
     44
     45ACLOCAL = @ACLOCAL@
     46AUTOCONF = @AUTOCONF@
     47AUTOMAKE = @AUTOMAKE@
     48AUTOHEADER = @AUTOHEADER@
     49
     50INSTALL = @INSTALL@
     51INSTALL_PROGRAM = @INSTALL_PROGRAM@
     52INSTALL_DATA = @INSTALL_DATA@
     53INSTALL_SCRIPT = @INSTALL_SCRIPT@
     54INSTALL_STRIP_FLAG =
     55transform = @program_transform_name@
     56
     57NORMAL_INSTALL = :
     58PRE_INSTALL = :
     59POST_INSTALL = :
     60NORMAL_UNINSTALL = :
     61PRE_UNINSTALL = :
     62POST_UNINSTALL = :
     63build_alias = @build_alias@
     64build_triplet = @build@
     65host_alias = @host_alias@
     66host_triplet = @host@
     67target_alias = @target_alias@
     68target_triplet = @target@
     69CC = @CC@
     70CC_FOR_TARGET = @CC_FOR_TARGET@
     71CPP = @CPP@
     72GCCSED = @GCCSED@
     73INSTALL_CHANGE = @INSTALL_CHANGE@
     74MAINT = @MAINT@
     75MAKEINFO = @MAKEINFO@
     76PACKAGE = @PACKAGE@
     77PACKHEX = @PACKHEX@
     78PROJECT_INCLUDE = @PROJECT_INCLUDE@
     79PROJECT_RELEASE = @PROJECT_RELEASE@
     80PROJECT_ROOT = @PROJECT_ROOT@
     81RTEMS_BSP = @RTEMS_BSP@
     82RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     83RTEMS_CPU = @RTEMS_CPU@
     84RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     85RTEMS_HOST = @RTEMS_HOST@
     86RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1187RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    17 include $(RTEMS_ROOT)/make/directory.cfg
    18 
    19 INSTALL_CHANGE = @INSTALL_CHANGE@
     88RTEMS_TOPdir = @RTEMS_TOPdir@
     89VERSION = @VERSION@
     90
     91AUTOMAKE_OPTIONS = foreign 1.4
    2092
    2193SUBDIRS = include clock sci timer null
    22 
    23 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     94mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     95CONFIG_CLEAN_FILES =
     96DIST_COMMON =  Makefile.am Makefile.in
     97
     98
     99DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     100
     101TAR = gtar
     102GZIP_ENV = --best
     103all: all-redirect
     104.SUFFIXES:
     105$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/subdirs.am $(top_srcdir)/../../../../../automake/local.am
     106        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7045/Makefile
     107
     108Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    24109        cd $(top_builddir) \
    25          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     110          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     111
     112
     113# This directory's subdirectories are mostly independent; you can cd
     114# into them and run `make' without going through this Makefile.
     115# To change the values of `make' variables: instead of editing Makefiles,
     116# (1) if the variable is set in `config.status', edit `config.status'
     117#     (which will cause the Makefiles to be regenerated when you run `make');
     118# (2) otherwise, pass the desired values on the `make' command line.
     119
     120@SET_MAKE@
     121
     122all-recursive install-data-recursive install-exec-recursive \
     123installdirs-recursive install-recursive uninstall-recursive  \
     124check-recursive installcheck-recursive info-recursive dvi-recursive:
     125        @set fnord $(MAKEFLAGS); amf=$$2; \
     126        dot_seen=no; \
     127        target=`echo $@ | sed s/-recursive//`; \
     128        list='$(SUBDIRS)'; for subdir in $$list; do \
     129          echo "Making $$target in $$subdir"; \
     130          if test "$$subdir" = "."; then \
     131            dot_seen=yes; \
     132            local_target="$$target-am"; \
     133          else \
     134            local_target="$$target"; \
     135          fi; \
     136          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     137           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     138        done; \
     139        if test "$$dot_seen" = "no"; then \
     140          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     141        fi; test -z "$$fail"
     142
     143mostlyclean-recursive clean-recursive distclean-recursive \
     144maintainer-clean-recursive:
     145        @set fnord $(MAKEFLAGS); amf=$$2; \
     146        dot_seen=no; \
     147        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
     148          rev="$$subdir $$rev"; \
     149          test "$$subdir" = "." && dot_seen=yes; \
     150        done; \
     151        test "$$dot_seen" = "no" && rev=". $$rev"; \
     152        target=`echo $@ | sed s/-recursive//`; \
     153        for subdir in $$rev; do \
     154          echo "Making $$target in $$subdir"; \
     155          if test "$$subdir" = "."; then \
     156            local_target="$$target-am"; \
     157          else \
     158            local_target="$$target"; \
     159          fi; \
     160          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     161           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     162        done && test -z "$$fail"
     163tags-recursive:
     164        list='$(SUBDIRS)'; for subdir in $$list; do \
     165          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
     166        done
     167
     168tags: TAGS
     169
     170ID: $(HEADERS) $(SOURCES) $(LISP)
     171        list='$(SOURCES) $(HEADERS)'; \
     172        unique=`for i in $$list; do echo $$i; done | \
     173          awk '    { files[$$0] = 1; } \
     174               END { for (i in files) print i; }'`; \
     175        here=`pwd` && cd $(srcdir) \
     176          && mkid -f$$here/ID $$unique $(LISP)
     177
     178TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
     179        tags=; \
     180        here=`pwd`; \
     181        list='$(SUBDIRS)'; for subdir in $$list; do \
     182   if test "$$subdir" = .; then :; else \
     183            test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
     184   fi; \
     185        done; \
     186        list='$(SOURCES) $(HEADERS)'; \
     187        unique=`for i in $$list; do echo $$i; done | \
     188          awk '    { files[$$0] = 1; } \
     189               END { for (i in files) print i; }'`; \
     190        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
     191          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
     192
     193mostlyclean-tags:
     194
     195clean-tags:
     196
     197distclean-tags:
     198        -rm -f TAGS ID
     199
     200maintainer-clean-tags:
     201
     202distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     203
     204subdir = sh7045
     205
     206distdir: $(DISTFILES)
     207        here=`cd $(top_builddir) && pwd`; \
     208        top_distdir=`cd $(top_distdir) && pwd`; \
     209        distdir=`cd $(distdir) && pwd`; \
     210        cd $(top_srcdir) \
     211          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7045/Makefile
     212        @for file in $(DISTFILES); do \
     213          d=$(srcdir); \
     214          if test -d $$d/$$file; then \
     215            cp -pr $$d/$$file $(distdir)/$$file; \
     216          else \
     217            test -f $(distdir)/$$file \
     218            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     219            || cp -p $$d/$$file $(distdir)/$$file || :; \
     220          fi; \
     221        done
     222        for subdir in $(SUBDIRS); do \
     223          if test "$$subdir" = .; then :; else \
     224            test -d $(distdir)/$$subdir \
     225            || mkdir $(distdir)/$$subdir \
     226            || exit 1; \
     227            chmod 777 $(distdir)/$$subdir; \
     228            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
     229              || exit 1; \
     230          fi; \
     231        done
     232info-am:
     233info: info-recursive
     234dvi-am:
     235dvi: dvi-recursive
     236check-am: all-am
     237check: check-recursive
     238installcheck-am:
     239installcheck: installcheck-recursive
     240install-exec-am:
     241install-exec: install-exec-recursive
     242
     243install-data-am:
     244install-data: install-data-recursive
     245
     246install-am: all-am
     247        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     248install: install-recursive
     249uninstall-am:
     250uninstall: uninstall-recursive
     251all-am: Makefile
     252all-redirect: all-recursive
     253install-strip:
     254        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     255installdirs: installdirs-recursive
     256installdirs-am:
     257
     258
     259mostlyclean-generic:
     260
     261clean-generic:
     262
     263distclean-generic:
     264        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     265        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     266
     267maintainer-clean-generic:
     268mostlyclean-am:  mostlyclean-tags mostlyclean-generic
     269
     270mostlyclean: mostlyclean-recursive
     271
     272clean-am:  clean-tags clean-generic mostlyclean-am
     273
     274clean: clean-recursive
     275
     276distclean-am:  distclean-tags distclean-generic clean-am
     277
     278distclean: distclean-recursive
     279
     280maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
     281                distclean-am
     282        @echo "This command is intended for maintainers to use;"
     283        @echo "it deletes files that may require special tools to rebuild."
     284
     285maintainer-clean: maintainer-clean-recursive
     286
     287.PHONY: install-data-recursive uninstall-data-recursive \
     288install-exec-recursive uninstall-exec-recursive installdirs-recursive \
     289uninstalldirs-recursive all-recursive check-recursive \
     290installcheck-recursive info-recursive dvi-recursive \
     291mostlyclean-recursive distclean-recursive clean-recursive \
     292maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
     293distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
     294dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
     295install-exec install-data-am install-data install-am install \
     296uninstall-am uninstall all-redirect all-am all installdirs-am \
     297installdirs mostlyclean-generic distclean-generic clean-generic \
     298maintainer-clean-generic clean mostlyclean distclean maintainer-clean
     299
     300
     301depend-recursive \
     302preinstall-recursive \
     303debug-recursive \
     304profile-recursive:
     305        @set fnord $(MAKEFLAGS); amf=$$2; \
     306        dot_seen=no; \
     307        target=`echo $@ | sed s/-recursive//`; \
     308        list='$(SUBDIRS)'; for subdir in $$list; do \
     309          echo "Making $$target in $$subdir"; \
     310          if test "$$subdir" = "."; then \
     311            dot_seen=yes; \
     312            local_target="$$target-am"; \
     313          else \
     314            local_target="$$target"; \
     315          fi; \
     316          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
     317           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
     318        done; \
     319        if test "$$dot_seen" = "no"; then \
     320          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
     321        fi; test -z "$$fail"
     322
     323debug: debug-recursive
     324.PHONY: debug-recursive
     325
     326profile: profile-recursive
     327.PHONY: profile-recursive
     328
     329preinstall: preinstall-recursive
     330.PHONY: preinstall-recursive
     331
     332depend: depend-recursive
     333.PHONY: depend-recursive
     334
     335debug-am:
     336debug: debug-am
     337.PHONY: debug debug-am
     338
     339profile-am:
     340profile: profile-am
     341.PHONY: profile profile-am
     342
     343preinstall-am: $(PREINSTALL_FILES)
     344preinstall: preinstall-am
     345.PHONY: preinstall preinstall-am
     346
     347depend-am:
     348depend: depend-am
     349.PHONY: depend depend-am
     350
     351# Tell versions [3.59,3.63) of GNU make to not export all variables.
     352# Otherwise a system limit (for SysV at least) may be exceeded.
     353.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7045/clock/Makefile.in

    r5bce35b r35d7b15  
    1 ##
    2 ## $Id$
    3 ##
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15SHELL = @SHELL@
     16
    617srcdir = @srcdir@
    718top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = sh/sh7045/clock
    10 
     19VPATH = @srcdir@
     20prefix = @prefix@
     21exec_prefix = @exec_prefix@
     22
     23bindir = @bindir@
     24sbindir = @sbindir@
     25libexecdir = @libexecdir@
     26datadir = @datadir@
     27sysconfdir = @sysconfdir@
     28sharedstatedir = @sharedstatedir@
     29localstatedir = @localstatedir@
     30libdir = @libdir@
     31infodir = @infodir@
     32mandir = @mandir@
     33includedir = @includedir@
     34oldincludedir = /usr/include
     35
     36DESTDIR =
     37
     38pkgdatadir = $(datadir)/@PACKAGE@
     39pkglibdir = $(libdir)/@PACKAGE@
     40pkgincludedir = $(includedir)/@PACKAGE@
     41
     42top_builddir = ../..
     43
     44ACLOCAL = @ACLOCAL@
     45AUTOCONF = @AUTOCONF@
     46AUTOMAKE = @AUTOMAKE@
     47AUTOHEADER = @AUTOHEADER@
     48
     49INSTALL = @INSTALL@
     50INSTALL_PROGRAM = @INSTALL_PROGRAM@
     51INSTALL_DATA = @INSTALL_DATA@
     52INSTALL_SCRIPT = @INSTALL_SCRIPT@
     53INSTALL_STRIP_FLAG =
     54transform = @program_transform_name@
     55
     56NORMAL_INSTALL = :
     57PRE_INSTALL = :
     58POST_INSTALL = :
     59NORMAL_UNINSTALL = :
     60PRE_UNINSTALL = :
     61POST_UNINSTALL = :
     62build_alias = @build_alias@
     63build_triplet = @build@
     64host_alias = @host_alias@
     65host_triplet = @host@
     66target_alias = @target_alias@
     67target_triplet = @target@
     68CC = @CC@
     69CC_FOR_TARGET = @CC_FOR_TARGET@
     70CPP = @CPP@
     71GCCSED = @GCCSED@
     72INSTALL_CHANGE = @INSTALL_CHANGE@
     73MAINT = @MAINT@
     74MAKEINFO = @MAKEINFO@
     75PACKAGE = @PACKAGE@
     76PACKHEX = @PACKHEX@
     77PROJECT_INCLUDE = @PROJECT_INCLUDE@
     78PROJECT_RELEASE = @PROJECT_RELEASE@
     79PROJECT_ROOT = @PROJECT_ROOT@
     80RTEMS_BSP = @RTEMS_BSP@
     81RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     82RTEMS_CPU = @RTEMS_CPU@
     83RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     84RTEMS_HOST = @RTEMS_HOST@
     85RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1186RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
     87RTEMS_TOPdir = @RTEMS_TOPdir@
     88VERSION = @VERSION@
     89
     90AUTOMAKE_OPTIONS = foreign 1.4
    1591
    1692PGM = ${ARCH}/clock.rel
    1793
    18 # C source names, if any, go here -- minus the .c
    19 C_PIECES = ckinit
    20 C_FILES = $(C_PIECES:%=%.c)
    21 C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
    22 
    23 H_FILES =
    24 
    25 # Assembly source names, if any, go here -- minus the .s
    26 S_PIECES =
    27 S_FILES = $(S_PIECES:%=%.s)
     94C_FILES = ckinit.c
     95C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
     96
     97H_FILES =
     98
     99S_FILES =
    28100S_O_FILES = $(S_FILES:%.s=${ARCH}/%.o)
    29101
    30 SRCS = $(C_FILES) $(H_FILES) $(S_FILES)
    31102OBJS = $(C_O_FILES) $(S_O_FILES)
    32 
    33 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    34 include $(RTEMS_ROOT)/make/leaf.cfg
    35 
    36 INSTALL_CHANGE = @INSTALL_CHANGE@
    37103
    38104#
     
    40106#
    41107
    42 DEFINES +=
    43 CPPFLAGS +=
    44 CFLAGS += $(CFLAGS_OS_V)
    45 
    46 LD_PATHS +=
    47 LD_LIBS +=
    48 LDFLAGS +=
    49 
    50 #
    51 # Add your list of files to delete here.  The config files
    52 #  already know how to delete some stuff, so you may want
    53 #  to just run 'make clean' first to see what gets missed.
    54 #  'make clobber' already includes 'make clean'
    55 #
    56 
    57 CLEAN_ADDITIONS +=
    58 CLOBBER_ADDITIONS +=
     108AM_CFLAGS =  $(CFLAGS_OS_V)
     109
     110EXTRA_DIST = $(C_FILES) $(S_FILES)
     111mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     112CONFIG_CLEAN_FILES =
     113DIST_COMMON =  Makefile.am Makefile.in
     114
     115
     116DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     117
     118TAR = gtar
     119GZIP_ENV = --best
     120all: all-redirect
     121.SUFFIXES:
     122$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
     123        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7045/clock/Makefile
     124
     125Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
     126        cd $(top_builddir) \
     127          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     128
     129tags: TAGS
     130TAGS:
     131
     132
     133distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     134
     135subdir = sh7045/clock
     136
     137distdir: $(DISTFILES)
     138        here=`cd $(top_builddir) && pwd`; \
     139        top_distdir=`cd $(top_distdir) && pwd`; \
     140        distdir=`cd $(distdir) && pwd`; \
     141        cd $(top_srcdir) \
     142          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7045/clock/Makefile
     143        @for file in $(DISTFILES); do \
     144          d=$(srcdir); \
     145          if test -d $$d/$$file; then \
     146            cp -pr $$d/$$file $(distdir)/$$file; \
     147          else \
     148            test -f $(distdir)/$$file \
     149            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     150            || cp -p $$d/$$file $(distdir)/$$file || :; \
     151          fi; \
     152        done
     153info-am:
     154info: info-am
     155dvi-am:
     156dvi: dvi-am
     157check-am: all-am
     158check: check-am
     159installcheck-am:
     160installcheck: installcheck-am
     161install-exec-am:
     162install-exec: install-exec-am
     163
     164install-data-am:
     165install-data: install-data-am
     166
     167install-am: all-am
     168        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     169install: install-am
     170uninstall-am:
     171uninstall: uninstall-am
     172all-am: Makefile
     173all-redirect: all-am
     174install-strip:
     175        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     176installdirs:
     177
     178
     179mostlyclean-generic:
     180
     181clean-generic:
     182
     183distclean-generic:
     184        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     185        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     186
     187maintainer-clean-generic:
     188mostlyclean-am:  mostlyclean-generic
     189
     190mostlyclean: mostlyclean-am
     191
     192clean-am:  clean-generic mostlyclean-am
     193
     194clean: clean-am
     195
     196distclean-am:  distclean-generic clean-am
     197
     198distclean: distclean-am
     199
     200maintainer-clean-am:  maintainer-clean-generic distclean-am
     201        @echo "This command is intended for maintainers to use;"
     202        @echo "it deletes files that may require special tools to rebuild."
     203
     204maintainer-clean: maintainer-clean-am
     205
     206.PHONY: tags distdir info-am info dvi-am dvi check check-am \
     207installcheck-am installcheck install-exec-am install-exec \
     208install-data-am install-data install-am install uninstall-am uninstall \
     209all-redirect all-am all installdirs mostlyclean-generic \
     210distclean-generic clean-generic maintainer-clean-generic clean \
     211mostlyclean distclean maintainer-clean
     212
     213
     214include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
     215include $(RTEMS_ROOT)/make/leaf.cfg
    59216
    60217${PGM}: ${OBJS}
    61218        ${make-rel}
    62219
    63 all: ${ARCH} $(SRCS) $(PGM)
    64 
    65 # the .rel file built here will be put into libbsp.a by
    66 #    libbsp/sh/BSP/wrapup/Makefile
    67 install: all
    68 
    69 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    70         cd $(top_builddir) \
    71          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     220all: ${ARCH} $(PGM)
     221
     222debug-am:
     223debug: debug-am
     224.PHONY: debug debug-am
     225
     226profile-am:
     227profile: profile-am
     228.PHONY: profile profile-am
     229
     230preinstall-am: $(PREINSTALL_FILES)
     231preinstall: preinstall-am
     232.PHONY: preinstall preinstall-am
     233
     234depend-am:
     235depend: depend-am
     236.PHONY: depend depend-am
     237
     238# Tell versions [3.59,3.63) of GNU make to not export all variables.
     239# Otherwise a system limit (for SysV at least) may be exceeded.
     240.NOEXPORT:
  • c/src/lib/libcpu/sh/sh7045/include/Makefile.in

    r5bce35b r35d7b15  
    1 #
    2 # $Id$
    3 #
    4 
    5 @SET_MAKE@
     1# Makefile.in generated automatically by automake 1.4a from Makefile.am
     2
     3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
     4# This Makefile.in is free software; the Free Software Foundation
     5# gives unlimited permission to copy and/or distribute it,
     6# with or without modifications, as long as this notice is preserved.
     7
     8# This program is distributed in the hope that it will be useful,
     9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
     10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
     11# PARTICULAR PURPOSE.
     12
     13
     14
     15SHELL = @SHELL@
     16
    617srcdir = @srcdir@
    718top_srcdir = @top_srcdir@
    8 top_builddir = ../../..
    9 subdir = sh/sh7045/include
    10 
     19VPATH = @srcdir@
     20prefix = @prefix@
     21exec_prefix = @exec_prefix@
     22
     23bindir = @bindir@
     24sbindir = @sbindir@
     25libexecdir = @libexecdir@
     26datadir = @datadir@
     27sysconfdir = @sysconfdir@
     28sharedstatedir = @sharedstatedir@
     29localstatedir = @localstatedir@
     30libdir = @libdir@
     31infodir = @infodir@
     32mandir = @mandir@
     33includedir = @includedir@
     34oldincludedir = /usr/include
     35
     36DESTDIR =
     37
     38pkgdatadir = $(datadir)/@PACKAGE@
     39pkglibdir = $(libdir)/@PACKAGE@
     40pkgincludedir = $(includedir)/@PACKAGE@
     41
     42top_builddir = ../..
     43
     44ACLOCAL = @ACLOCAL@
     45AUTOCONF = @AUTOCONF@
     46AUTOMAKE = @AUTOMAKE@
     47AUTOHEADER = @AUTOHEADER@
     48
     49INSTALL = @INSTALL@
     50INSTALL_PROGRAM = @INSTALL_PROGRAM@
     51INSTALL_DATA = @INSTALL_DATA@
     52INSTALL_SCRIPT = @INSTALL_SCRIPT@
     53INSTALL_STRIP_FLAG =
     54transform = @program_transform_name@
     55
     56NORMAL_INSTALL = :
     57PRE_INSTALL = :
     58POST_INSTALL = :
     59NORMAL_UNINSTALL = :
     60PRE_UNINSTALL = :
     61POST_UNINSTALL = :
     62build_alias = @build_alias@
     63build_triplet = @build@
     64host_alias = @host_alias@
     65host_triplet = @host@
     66target_alias = @target_alias@
     67target_triplet = @target@
     68CC = @CC@
     69CC_FOR_TARGET = @CC_FOR_TARGET@
     70CPP = @CPP@
     71GCCSED = @GCCSED@
     72INSTALL_CHANGE = @INSTALL_CHANGE@
     73MAINT = @MAINT@
     74MAKEINFO = @MAKEINFO@
     75PACKAGE = @PACKAGE@
     76PACKHEX = @PACKHEX@
     77PROJECT_INCLUDE = @PROJECT_INCLUDE@
     78PROJECT_RELEASE = @PROJECT_RELEASE@
     79PROJECT_ROOT = @PROJECT_ROOT@
     80RTEMS_BSP = @RTEMS_BSP@
     81RTEMS_BSP_FAMILY = @RTEMS_BSP_FAMILY@
     82RTEMS_CPU = @RTEMS_CPU@
     83RTEMS_CPU_MODEL = @RTEMS_CPU_MODEL@
     84RTEMS_HOST = @RTEMS_HOST@
     85RTEMS_LIBC_DIR = @RTEMS_LIBC_DIR@
    1186RTEMS_ROOT = @RTEMS_ROOT@
    12 PROJECT_ROOT = @PROJECT_ROOT@
    13 
    14 VPATH = @srcdir@
    15 
    16 H_FILES = $(srcdir)/io_types.h $(srcdir)/null.h $(srcdir)/sci.h \
    17     $(srcdir)/sh7_pfc.h $(srcdir)/sh7_sci.h
    18 
    19 SRCS = $(H_FILES)
    20 
    21 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
    22 include $(RTEMS_ROOT)/make/leaf.cfg
    23 
    24 INSTALL_CHANGE = @INSTALL_CHANGE@
    25 mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
    26 
    27 INSTALLDIRS = $(PROJECT_INCLUDE)/sh
    28 
    29 $(INSTALLDIRS):
    30         @$(mkinstalldirs) $(INSTALLDIRS)
    31 
    32 CLEAN_ADDITIONS +=
    33 CLOBBER_ADDITIONS +=
    34 
    35 all: install
     87RTEMS_TOPdir = @RTEMS_TOPdir@
     88VERSION = @VERSION@
     89
     90AUTOMAKE_OPTIONS = foreign 1.4
     91
     92H_FILES = io_types.h null.h sci.h sh7_pfc.h sh7_sci.h
    3693
    3794# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
    3895#       file name conflicts
    3996
    40 install:
    41         $(mkinstalldirs) $(PROJECT_INCLUDE)/sh
    42         @$(INSTALL_CHANGE) -m 644 $(H_FILES) $(PROJECT_INCLUDE)/sh
    43 
    44 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
     97TMPINSTALL_FILES =  $(PROJECT_INCLUDE)/sh $(H_FILES:%=$(PROJECT_INCLUDE)/sh/%)
     98
     99mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
     100CONFIG_CLEAN_FILES =
     101DIST_COMMON =  Makefile.am Makefile.in
     102
     103
     104DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
     105
     106TAR = gtar
     107GZIP_ENV = --best
     108all: all-redirect
     109.SUFFIXES:
     110$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
     111        cd $(top_srcdir) && $(AUTOMAKE) --foreign sh7045/include/Makefile
     112
     113Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
    45114        cd $(top_builddir) \
    46          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     115          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     116
     117tags: TAGS
     118TAGS:
     119
     120
     121distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
     122
     123subdir = sh7045/include
     124
     125distdir: $(DISTFILES)
     126        here=`cd $(top_builddir) && pwd`; \
     127        top_distdir=`cd $(top_distdir) && pwd`; \
     128        distdir=`cd $(distdir) && pwd`; \
     129        cd $(top_srcdir) \
     130          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign sh7045/include/Makefile
     131        @for file in $(DISTFILES); do \
     132          d=$(srcdir); \
     133          if test -d $$d/$$file; then \
     134            cp -pr $$d/$$file $(distdir)/$$file; \
     135          else \
     136            test -f $(distdir)/$$file \
     137            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
     138            || cp -p $$d/$$file $(distdir)/$$file || :; \
     139          fi; \
     140        done
     141info-am:
     142info: info-am
     143dvi-am:
     144dvi: dvi-am
     145check-am: all-am
     146check: check-am
     147installcheck-am:
     148installcheck: installcheck-am
     149install-exec-am:
     150install-exec: install-exec-am
     151
     152install-data-am:
     153install-data: install-data-am
     154
     155install-am: all-am
     156        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
     157install: install-am
     158uninstall-am:
     159uninstall: uninstall-am
     160all-am: Makefile all-local
     161all-redirect: all-am
     162install-strip:
     163        $(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
     164installdirs:
     165
     166
     167mostlyclean-generic:
     168
     169clean-generic:
     170
     171distclean-generic:
     172        -rm -f Makefile $(CONFIG_CLEAN_FILES)
     173        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
     174
     175maintainer-clean-generic:
     176mostlyclean-am:  mostlyclean-generic
     177
     178mostlyclean: mostlyclean-am
     179
     180clean-am:  clean-generic mostlyclean-am
     181
     182clean: clean-am
     183
     184distclean-am:  distclean-generic clean-am
     185
     186distclean: distclean-am
     187
     188maintainer-clean-am:  maintainer-clean-generic distclean-am
     189        @echo "This command is intended for maintainers to use;"
     190        @echo "it deletes files that may require special tools to rebuild."
     191
     192maintainer-clean: maintainer-clean-am
     193
     194.PHONY: tags distdir info-am info dvi-am dvi check check-am \
     195installcheck-am installcheck install-exec-am install-exec \
     196install-data-am install-data install-am install uninstall-am uninstall \
     197all-local all-redirect all-am all installdirs mostlyclean-generic \
     198distclean-generic clean-generic maintainer-clean-generic clean \
     199mostlyclean distclean maintainer-clean
     200
     201
     202$(PROJECT_INCLUDE)/sh:
     203        $(mkinstalldirs) $@
     204
     205$(PROJECT_INCLUDE)/sh/%.h: %.h
     206        $(INSTALL_DATA) $< $@
     207
     208all-local: $(TMPINSTALL_FILES)
     209