summaryrefslogtreecommitdiffstats
path: root/vnc/makefile_win32
diff options
context:
space:
mode:
Diffstat (limited to 'vnc/makefile_win32')
-rwxr-xr-xvnc/makefile_win3225
1 files changed, 0 insertions, 25 deletions
diff --git a/vnc/makefile_win32 b/vnc/makefile_win32
deleted file mode 100755
index 69b6fcfc..00000000
--- a/vnc/makefile_win32
+++ /dev/null
@@ -1,25 +0,0 @@
-# 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