add ipc client / server samples for digital mars

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21199 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott 2003-06-17 09:36:48 +00:00
parent 4ce458c74f
commit 18d491685c
4 changed files with 24 additions and 0 deletions

6
samples/ipc/client.sc Normal file
View File

@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
TARGET=client
OBJECTS=$(TARGET).obj
EXTRALIBS=
include $(WXDIR)\src\makeprog.sc

6
samples/ipc/server.sc Normal file
View File

@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
TARGET=server
OBJECTS=$(TARGET).obj
EXTRALIBS=
include $(WXDIR)\src\makeprog.sc

View File

@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
EXTRALIBS=
TARGET=client
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc

View File

@ -0,0 +1,6 @@
#Digital Mars (was Symantec) C++ makefile
WXDIR = $(WXWIN)
EXTRALIBS=
TARGET=server
OBJECTS = $(TARGET).obj
include $(WXDIR)\src\makeprog.sc