diff options
author | jsorg71 <jsorg71> | 2005-07-13 01:07:00 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-07-13 01:07:00 +0000 |
commit | 2f4ea160514b89afad5f688e5fe6c03296656648 (patch) | |
tree | efdc2247c0d874451a49e27b18d0ab8913442f00 /vnc/makefile_win32 | |
parent | 666b5dd175a1cc837d6ae45d7923679ddeeed241 (diff) | |
download | xrdp-proprietary-2f4ea160514b89afad5f688e5fe6c03296656648.tar.gz xrdp-proprietary-2f4ea160514b89afad5f688e5fe6c03296656648.zip |
got vnc mod working in win32
Diffstat (limited to 'vnc/makefile_win32')
-rwxr-xr-x | vnc/makefile_win32 | 25 |
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 |