Update of /cvsroot/pclasses/pclasses2/src/System
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11007/src/System
Modified Files:
Makefile.am
Log Message:
Index: Makefile.am
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/src/System/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile.am 23 Dec 2004 04:32:18 -0000 1.2
+++ Makefile.am 27 Dec 2004 07:07:20 -0000 1.3
@@ -58,11 +58,11 @@
endif
if WITH_POSIX_IO
-IO_Sources = Pipe.posix.cpp File.posix.cpp
+IO_Sources = Pipe.posix.cpp File.posix.cpp FileInfo.posix.cpp Directory.posix.cpp
endif
if WITH_WIN32_IO
-IO_Sources = Pipe.win32.cpp File.win32.cpp
+IO_Sources = Pipe.win32.cpp File.win32.cpp FileInfo.win32.cpp Directory.win32.cpp
endif
INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include $(all_includes)
@@ -73,7 +73,7 @@
libpclasses_system_la_SOURCES = timeout.cpp SystemError.cpp \
CriticalSection.cpp Mutex.cpp $(Thread_Sources) \
$(Semaphore_Sources) $(SharedMem_Sources) $(SharedLib_Sources) \
- $(IO_Sources)
+ SharedLib.generic.cpp FileInfo.common.cpp $(IO_Sources)
libpclasses_system_la_LDFLAGS = -no-undefined
libpclasses_system_la_LIBADD = $(top_builddir)/src/libpclasses.la \
@@ -81,4 +81,4 @@
$(top_builddir)/src/IO/libpclasses_io.la \
$(DL_LIBS)
-noinst_HEADERS = timeout.h
+noinst_HEADERS = timeout.h SharedLibCache.h
|