diff options
author | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-19 22:34:17 +0000 |
---|---|---|
committer | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-19 22:34:17 +0000 |
commit | f35c338f2758cff667f3a88436f5ffcc08be481c (patch) | |
tree | 1d5e90eb0399a43f056ab1dcedc49e1b1b1085d4 /libffi/Makefile.am | |
parent | c72d615a3adabb940107075e7718c6deb0738509 (diff) | |
download | gcc-f35c338f2758cff667f3a88436f5ffcc08be481c.tar.gz |
2004-03-19 Matthias Klose <doko@debian.org>
* Makefile.am: Update
* Makefile.in: Regenerate.
* src/pa/ffi.h.in: Remove.
* src/pa/ffitarget.h: New file.
2004-02-10 Randolph Chung <tausq@debian.org>
* Makefile.am: Add PA support.
* Makefile.in: Regenerate.
* include/Makefile.in: Regenerate.
* configure.ac: Add PA target.
* configure: Regenerate.
* src/pa/ffi.c: New file.
* src/pa/ffi.h.in: Add PA support.
* src/pa/linux.S: New file.
* prep_cif.c: Add PA support.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79702 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libffi/Makefile.am')
-rw-r--r-- | libffi/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libffi/Makefile.am b/libffi/Makefile.am index 7926109d2f8..a59df23e3a8 100644 --- a/libffi/Makefile.am +++ b/libffi/Makefile.am @@ -22,7 +22,8 @@ EXTRA_DIST = LICENSE ChangeLog.v1 \ src/sparc/v8.S src/sparc/v9.S src/sparc/ffitarget.h \ src/sparc/ffi.c \ src/x86/ffi.c src/x86/sysv.S src/x86/win32.S \ - src/x86/ffi64.c src/x86/unix64.S src/x86/ffitarget.h + src/x86/ffi64.c src/x86/unix64.S src/x86/ffitarget.h \ + src/pa/ffi.c src/pa/linux.S ## ################################################################ @@ -135,6 +136,9 @@ endif if SH64 nodist_libffi_la_SOURCES += src/sh64/sysv.S src/sh64/ffi.c endif +if PA +nodist_libffi_la_SOURCES += src/pa/linux.S src/pa/ffi.c +endif libffi_convenience_la_SOURCES = $(libffi_la_SOURCES) nodist_libffi_convenience_la_SOURCES = $(nodist_libffi_la_SOURCES) |