summaryrefslogtreecommitdiffstats
path: root/vnc/makefile_win32
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-07-13 01:07:00 +0000
committerjsorg71 <jsorg71>2005-07-13 01:07:00 +0000
commit2f4ea160514b89afad5f688e5fe6c03296656648 (patch)
treeefdc2247c0d874451a49e27b18d0ab8913442f00 /vnc/makefile_win32
parent666b5dd175a1cc837d6ae45d7923679ddeeed241 (diff)
downloadxrdp-proprietary-2f4ea160514b89afad5f688e5fe6c03296656648.tar.gz
xrdp-proprietary-2f4ea160514b89afad5f688e5fe6c03296656648.zip
got vnc mod working in win32
Diffstat (limited to 'vnc/makefile_win32')
-rwxr-xr-xvnc/makefile_win3225
1 files changed, 25 insertions, 0 deletions
diff --git a/vnc/makefile_win32 b/vnc/makefile_win32
new file mode 100755
index 00000000..69b6fcfc
--- /dev/null
+++ b/vnc/makefile_win32
@@ -0,0 +1,25 @@
+# borland windows makefile
+#
+# this assumes openssl and borland free command line tools are installed
+# this assumes c:\windows is windows directory
+#
+# run 'set PATH=c:\borland\bcc55\bin' and run 'make -f makefile_win32 all'
+#
+
+VNCOBJ = vnc.obj os_calls.obj d3des.obj
+CFLAGS = -w- -O2 -I../common -Ic:/borland/bcc55/include
+LDFLAGS = -Lc:/borland/bcc55/lib
+
+all: vnc
+
+vnc: $(VNCOBJ)
+ $(CC) $(LDFLAGS) -WD -evnc.dll $(VNCOBJ)
+
+clean:
+ del $(VNCOBJ) vnc.dll
+
+os_calls.obj:
+ $(CC) $(CFLAGS) -c ../common/os_calls.c
+
+d3des.obj:
+ $(CC) $(CFLAGS) -c ../common/d3des.c