summaryrefslogtreecommitdiffstats
path: root/newlib/libc/unix/Makefile.in
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2002-04-29 19:31:23 +0000
committerJeff Johnston <jjohnstn@redhat.com>2002-04-29 19:31:23 +0000
commit29798f0d57549a89d7ec6c8717fda26347e6bbf7 (patch)
tree76ffe5ce7c145afb2449d0b56780d8cd03e98ae1 /newlib/libc/unix/Makefile.in
parenteccebec08df9f2b74e2bf457f4063c86662727e0 (diff)
downloadcygnal-29798f0d57549a89d7ec6c8717fda26347e6bbf7.tar.gz
cygnal-29798f0d57549a89d7ec6c8717fda26347e6bbf7.tar.bz2
cygnal-29798f0d57549a89d7ec6c8717fda26347e6bbf7.zip
2002-04-29 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/sys/unistd.h (pread, pwrite): Added prototypes. * libc/unix/Makefile.am: Add pread.c and pwrite.c. * libc/sys/linux/Makefile.am: Add pread64.c and pwrite64.c. * libc/sys/linux/Makefile.in: Regenerated. * libc/unix/Makefile.in: Ditto. * libc/sys/linux/pread64.c: New file. * libc/sys/linux/pwrite64.c: Ditto. * libc/unix/pread.c: Ditto. * libc/unix/pwrite.c: Ditto.
Diffstat (limited to 'newlib/libc/unix/Makefile.in')
-rw-r--r--newlib/libc/unix/Makefile.in13
1 files changed, 8 insertions, 5 deletions
diff --git a/newlib/libc/unix/Makefile.in b/newlib/libc/unix/Makefile.in
index 72ddaf49b..d1de62e59 100644
--- a/newlib/libc/unix/Makefile.in
+++ b/newlib/libc/unix/Makefile.in
@@ -100,7 +100,8 @@ AUTOMAKE_OPTIONS = cygnus
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
LIB_SOURCES = \
- getpass.c sigset.c getpwent.c ttyname.c getut.c getlogin.c getcwd.c
+ getcwd.c getlogin.c getpass.c getpwent.c getut.c \
+ pread.c pwrite.c sigset.c ttyname.c
libunix_la_LDFLAGS = -Xcompiler -nostdlib
@@ -130,13 +131,15 @@ DEFS = @DEFS@ -I. -I$(srcdir)
CPPFLAGS = @CPPFLAGS@
LIBS = @LIBS@
lib_a_LIBADD =
-@USE_LIBTOOL_FALSE@lib_a_OBJECTS = getpass.o sigset.o getpwent.o \
-@USE_LIBTOOL_FALSE@ttyname.o getut.o getlogin.o getcwd.o
+@USE_LIBTOOL_FALSE@lib_a_OBJECTS = getcwd.o getlogin.o getpass.o \
+@USE_LIBTOOL_FALSE@getpwent.o getut.o pread.o pwrite.o sigset.o \
+@USE_LIBTOOL_FALSE@ttyname.o
LTLIBRARIES = $(noinst_LTLIBRARIES)
libunix_la_LIBADD =
-@USE_LIBTOOL_TRUE@libunix_la_OBJECTS = getpass.lo sigset.lo getpwent.lo \
-@USE_LIBTOOL_TRUE@ttyname.lo getut.lo getlogin.lo getcwd.lo
+@USE_LIBTOOL_TRUE@libunix_la_OBJECTS = getcwd.lo getlogin.lo getpass.lo \
+@USE_LIBTOOL_TRUE@getpwent.lo getut.lo pread.lo pwrite.lo sigset.lo \
+@USE_LIBTOOL_TRUE@ttyname.lo
CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)