diff options
author | Brooks Moses <brooks.moses@codesourcery.com> | 2007-03-01 23:57:32 +0000 |
---|---|---|
committer | Brooks Moses <brooks@gcc.gnu.org> | 2007-03-01 15:57:32 -0800 |
commit | e6e3b4b35ea651213bd61daf2714a095bdfaf48f (patch) | |
tree | aa061e89ce24f9519de407a2d5907606317e4576 | |
parent | 4fcb360b628bf6a1b96c297afbb550bfbead60f2 (diff) | |
download | gcc-e6e3b4b35ea651213bd61daf2714a095bdfaf48f.zip gcc-e6e3b4b35ea651213bd61daf2714a095bdfaf48f.tar.gz gcc-e6e3b4b35ea651213bd61daf2714a095bdfaf48f.tar.bz2 |
Makefile.am: Add dummy install-pdf target.
* Makefile.am: Add dummy install-pdf target.
* Makefile.in: Regenerate
From-SVN: r122446
-rw-r--r-- | libgfortran/ChangeLog | 5 | ||||
-rw-r--r-- | libgfortran/Makefile.am | 5 | ||||
-rw-r--r-- | libgfortran/Makefile.in | 5 |
3 files changed, 11 insertions, 4 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 1ca5343..49ab4dd 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2007-03-01 Brooks Moses <brooks.moses@codesourcery.com> + + * Makefile.am: Add dummy install-pdf target. + * Makefile.in: Regenerate + 2007-02-24 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libgfortran/30918 diff --git a/libgfortran/Makefile.am b/libgfortran/Makefile.am index 926d18a..f306cc9 100644 --- a/libgfortran/Makefile.am +++ b/libgfortran/Makefile.am @@ -622,9 +622,10 @@ $(gfor_misc_specifics) \ intrinsics/dprod_r8.f90 \ intrinsics/f2c_specifics.F90 -# No install-html support yet. -.PHONY: install-html +# No install-html or install-pdf support in automake yet +.PHONY: install-html install-pdf install-html: +install-pdf: # Turn on vectorization and loop unrolling for matmul. $(patsubst %.c,%.lo,$(notdir $(i_matmul_c))): AM_CFLAGS += -ftree-vectorize -funroll-loops diff --git a/libgfortran/Makefile.in b/libgfortran/Makefile.in index 2040d6a..c1ff053 100644 --- a/libgfortran/Makefile.in +++ b/libgfortran/Makefile.in @@ -4827,9 +4827,10 @@ uninstall-am: uninstall-info-am uninstall-myexeclibLTLIBRARIES \ uninstall-toolexeclibLTLIBRARIES -# No install-html support yet. -.PHONY: install-html +# No install-html or install-pdf support in automake yet +.PHONY: install-html install-pdf install-html: +install-pdf: # Turn on vectorization and loop unrolling for matmul. $(patsubst %.c,%.lo,$(notdir $(i_matmul_c))): AM_CFLAGS += -ftree-vectorize -funroll-loops |