From: <mik...@us...> - 2003-12-24 13:09:46
|
Update of /cvsroot/sharedaemon/sharedaemon-ui-web In directory sc8-pr-cvs1:/tmp/cvs-serv1411 Modified Files: Makefile.bsd Makefile.osx Makefile.win Makefile.lin ChangeLog Log Message: 24/12/2003 Barbeaux * Updated Makefiles for Win32, Linux and MacOS X Index: Makefile.bsd =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/Makefile.bsd,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.bsd 24 Dec 2003 13:03:56 -0000 1.2 +++ Makefile.bsd 24 Dec 2003 13:09:42 -0000 1.3 @@ -33,6 +33,11 @@ src/exceptions/ThreadException.o \ src/test/TestHandler.o \ src/test/TestException.o \ + src/test/TestThread.o \ + src/thread/Mutex.o \ + src/thread/Condition.o \ + src/thread/Semaphore.o \ + src/thread/Thread.o \ src/Main.o $(BIN) : $(OBJECTS) Index: Makefile.osx =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/Makefile.osx,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.osx 24 Dec 2003 13:03:56 -0000 1.2 +++ Makefile.osx 24 Dec 2003 13:09:42 -0000 1.3 @@ -33,6 +33,11 @@ src/exceptions/ThreadException.o \ src/test/TestHandler.o \ src/test/TestException.o \ + src/test/TestThread.o \ + src/thread/Mutex.o \ + src/thread/Condition.o \ + src/thread/Semaphore.o \ + src/thread/Thread.o \ src/Main.o $(BIN) : $(OBJECTS) Index: Makefile.win =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/Makefile.win,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.win 24 Dec 2003 13:03:56 -0000 1.2 +++ Makefile.win 24 Dec 2003 13:09:42 -0000 1.3 @@ -32,14 +32,18 @@ INCLUDE_DIRS = -I"$(MINGW_DIR)/include/c++" -I"$(MINGW_DIR)/include/c++/mingw32" INLUCDE_DIRS += -I"$(MINGW_DIR)/include/c++/backward" -I"$(MINGW_DIR)/include" LIBRARIES_DIR = -L"$(MINGW_DIR)/lib" -LIBS = -L"$(MINGW_DIR)/lib" $(MINGW_DIR)/lib/libws2_32.a -# $(MINGW_DIR)/lib/libpthreadGCE.a +LIBS = -L"$(MINGW_DIR)/lib" OBJECTS = src/exceptions/Exception.o \ src/exceptions/ThreadException.o \ src/test/TestHandler.o \ src/test/TestException.o \ + src/test/TestThread.o \ + src/thread/Mutex.o \ + src/thread/Condition.o \ + src/thread/Semaphore.o \ + src/thread/Thread.o \ src/Main.o $(BIN) : $(OBJECTS) Index: Makefile.lin =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/Makefile.lin,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.lin 24 Dec 2003 13:03:56 -0000 1.2 +++ Makefile.lin 24 Dec 2003 13:09:42 -0000 1.3 @@ -31,6 +31,11 @@ src/exceptions/ThreadException.o \ src/test/TestHandler.o \ src/test/TestException.o \ + src/test/TestThread.o \ + src/thread/Mutex.o \ + src/thread/Condition.o \ + src/thread/Semaphore.o \ + src/thread/Thread.o \ src/Main.o $(BIN) : $(OBJECTS) Index: ChangeLog =================================================================== RCS file: /cvsroot/sharedaemon/sharedaemon-ui-web/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ChangeLog 24 Dec 2003 13:03:56 -0000 1.3 +++ ChangeLog 24 Dec 2003 13:09:42 -0000 1.4 @@ -24,6 +24,7 @@ ----------------------------------------------------------- 24/12/2003 Barbeaux + * Updated Makefiles for Win32, Linux and MacOS X * Added simple test programs for Exceptions and Threads. * Implemented Semaphore and Thread. * Implemented Mutex and Condition. |