]> git.saurik.com Git - wxWidgets.git/commitdiff
add ipc client / server samples for digital mars
authorChris Elliott <biol75@york.ac.uk>
Tue, 17 Jun 2003 09:36:48 +0000 (09:36 +0000)
committerChris Elliott <biol75@york.ac.uk>
Tue, 17 Jun 2003 09:36:48 +0000 (09:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21199 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/ipc/client.sc [new file with mode: 0644]
samples/ipc/server.sc [new file with mode: 0644]
samples/sockets/client.sc [new file with mode: 0644]
samples/sockets/server.sc [new file with mode: 0644]

diff --git a/samples/ipc/client.sc b/samples/ipc/client.sc
new file mode 100644 (file)
index 0000000..19aa06f
--- /dev/null
@@ -0,0 +1,6 @@
+#Digital Mars (was Symantec) C++ makefile 
+WXDIR = $(WXWIN)
+TARGET=client
+OBJECTS=$(TARGET).obj
+EXTRALIBS=
+include $(WXDIR)\src\makeprog.sc
diff --git a/samples/ipc/server.sc b/samples/ipc/server.sc
new file mode 100644 (file)
index 0000000..f43b26f
--- /dev/null
@@ -0,0 +1,6 @@
+#Digital Mars (was Symantec) C++ makefile 
+WXDIR = $(WXWIN)
+TARGET=server
+OBJECTS=$(TARGET).obj
+EXTRALIBS=
+include $(WXDIR)\src\makeprog.sc
diff --git a/samples/sockets/client.sc b/samples/sockets/client.sc
new file mode 100644 (file)
index 0000000..02eca76
--- /dev/null
@@ -0,0 +1,6 @@
+#Digital Mars (was Symantec) C++ makefile 
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=client
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc
diff --git a/samples/sockets/server.sc b/samples/sockets/server.sc
new file mode 100644 (file)
index 0000000..253983d
--- /dev/null
@@ -0,0 +1,6 @@
+#Digital Mars (was Symantec) C++ makefile 
+WXDIR = $(WXWIN)
+EXTRALIBS=
+TARGET=server
+OBJECTS = $(TARGET).obj
+include $(WXDIR)\src\makeprog.sc