summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libcsupport/Makefile.am10
2 files changed, 14 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 267af03af7..4b7b1446a5 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2007-03-26 Joel Sherrill <joel@OARcorp.com>
+ * libcsupport/Makefile.am: Pick up the Makefile changes associated
+ with the file splitting.
+
+2007-03-26 Joel Sherrill <joel@OARcorp.com>
+
* libcsupport/src/assoc.c, libcsupport/src/libio.c,
libcsupport/src/write.c: Split files to shrink minimum.exe. Hopefully
this will not be deemed necessary to commit to the 4.7 branch.
diff --git a/cpukit/libcsupport/Makefile.am b/cpukit/libcsupport/Makefile.am
index c044645e6f..e91b7927da 100644
--- a/cpukit/libcsupport/Makefile.am
+++ b/cpukit/libcsupport/Makefile.am
@@ -35,9 +35,16 @@ include_rtems_zilog_HEADERS = include/zilog/z8036.h include/zilog/z8530.h \
## General stuff
ERROR_C_FILES = src/error.c
-ASSOCIATION_C_FILES = src/assoc.c src/assocnamebad.c
+ASSOCIATION_C_FILES = src/assoc.c src/assoclocalbyname.c \
+ src/assoclocalbyremotebitfield.c src/assoclocalbyremote.c \
+ src/assocnamebad.c src/assocnamebylocalbitfield.c \
+ src/assocnamebylocal.c src/assocnamebyremotebitfield.c \
+ src/assocnamebyremote.c src/assocptrbylocal.c src/assocptrbyname.c \
+ src/assocptrbyremote.c src/assocremotebylocalbitfield.c \
+ src/assocremotebylocal.c src/assocremotebyname.c
BASE_FS_C_FILES = src/base_fs.c src/mount.c src/unmount.c src/libio.c \
+ src/libio_init.c \
src/libio_sockets.c src/eval.c src/fs_null_handlers.c src/privateenv.c
TERMIOS_C_FILES = src/cfgetispeed.c src/cfgetospeed.c src/cfsetispeed.c \
@@ -47,6 +54,7 @@ TERMIOS_C_FILES = src/cfgetispeed.c src/cfgetospeed.c src/cfsetispeed.c \
src/termiosreserveresources.c
SYSTEM_CALL_C_FILES = src/open.c src/close.c src/read.c src/write.c \
+ src/write_r.c \
src/lseek.c src/ioctl.c src/mkdir.c src/mknod.c src/mkfifo.c src/rmdir.c \
src/chdir.c src/chmod.c src/fchdir.c src/fchmod.c src/chown.c src/link.c \
src/unlink.c src/umask.c src/ftruncate.c src/utime.c src/fstat.c \