From: stephan b. <sg...@us...> - 2004-12-27 18:03:32
|
Update of /cvsroot/pclasses/pclasses2/src/System In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25847/src/System Modified Files: Makefile.toc Log Message: Corrected: Semaphore.posix.cpp was listed under the WIN32 sources, and wasn't being compiled. Index: Makefile.toc =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/System/Makefile.toc,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Makefile.toc 27 Dec 2004 18:00:00 -0000 1.11 +++ Makefile.toc 27 Dec 2004 18:03:15 -0000 1.12 @@ -54,21 +54,21 @@ File.posix.cpp \ Mutex.posix.cpp \ Pipe.posix.cpp \ + Semaphore.posix.cpp \ SharedMemory.posix.cpp \ - Thread.posix.cpp \ + Thread.posix.cpp SOURCES_WIN32 = Condition.win32.cpp \ CriticalSection.win32.cpp \ Mutex.win32.cpp \ - Semaphore.posix.cpp \ Semaphore.win32.cpp \ SharedLib.win32.cpp - ############################################## # TODO: use the config-mandated BUILD_SOURCES! +SOURCES_PLATFORM = POSIX BUILD_SOURCES = $(SOURCES_COMMON) -BUILD_SOURCES += $(SOURCES_POSIX) +BUILD_SOURCES += $(SOURCES_$(SOURCES_PLATFORM)) BUILD_SOURCES += $(SOURCES_SHAREDLIB) ############################################## |