diff options
author | Andreas Tobler <a.tobler@schweiz.ch> | 2004-06-20 11:14:17 +0200 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2004-06-20 11:14:17 +0200 |
commit | 500e12641f0f7fb4fde1221f7f8052ef351de5f7 (patch) | |
tree | 633aea03d45d67a968d1fa7b98850db3a0c57bdd /boehm-gc | |
parent | 84b8b0e04d42732ea65d452aa74e3575f75de10b (diff) | |
download | gcc-500e12641f0f7fb4fde1221f7f8052ef351de5f7.zip gcc-500e12641f0f7fb4fde1221f7f8052ef351de5f7.tar.gz gcc-500e12641f0f7fb4fde1221f7f8052ef351de5f7.tar.bz2 |
Makefile.am: Add rule for .S files to fix bootstrap on solaris and alpha.
2004-06-20 Andreas Tobler <a.tobler@schweiz.ch>
* Makefile.am: Add rule for .S files to fix bootstrap on
solaris and alpha.
* Makefile.in: Regenerate.
From-SVN: r83406
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 6 | ||||
-rw-r--r-- | boehm-gc/Makefile.am | 2 | ||||
-rw-r--r-- | boehm-gc/Makefile.in | 4 |
3 files changed, 11 insertions, 1 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 78de32d..f8588e9 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,9 @@ +2004-06-20 Andreas Tobler <a.tobler@schweiz.ch> + + * Makefile.am: Add rule for .S files to fix bootstrap on + solaris and alpha. + * Makefile.in: Regenerate. + 2004-06-16 Paolo Bonzini <bonzini@gnu.org> * boehm-gc/configure.ac: New name of configure.in. diff --git a/boehm-gc/Makefile.am b/boehm-gc/Makefile.am index 502cb23..af00bd5 100644 --- a/boehm-gc/Makefile.am +++ b/boehm-gc/Makefile.am @@ -57,6 +57,8 @@ TESTS = gctest ## We use -Wp,-P to strip #line directives. Irix `as' chokes on ## these. $(LTCOMPILE) -Wp,-P -x assembler-with-cpp -c $< +.S.lo: + $(LTCOMPILE) -Wp,-P -x assembler-with-cpp -c $< ## We have our own definition of LTCOMPILE because we want to use our ## CFLAGS, not those passed in from the top level make. diff --git a/boehm-gc/Makefile.in b/boehm-gc/Makefile.in index fc5f9ab..2be4b59 100644 --- a/boehm-gc/Makefile.in +++ b/boehm-gc/Makefile.in @@ -352,7 +352,7 @@ MAKEOVERRIDES = all: all-recursive .SUFFIXES: -.SUFFIXES: .c .lo .o .obj .s +.SUFFIXES: .S .c .lo .o .obj .s am--refresh: @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @@ -766,6 +766,8 @@ uninstall-info: uninstall-info-recursive .s.lo: $(LTCOMPILE) -Wp,-P -x assembler-with-cpp -c $< +.S.lo: + $(LTCOMPILE) -Wp,-P -x assembler-with-cpp -c $< # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |