diff options
author | jsorg71 <jsorg71> | 2004-11-28 04:56:58 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2004-11-28 04:56:58 +0000 |
commit | ae38cee2f0b64f62cf569cc8b15eb18d1de7c9f0 (patch) | |
tree | 70d3a8333500a486a305c06c1359c3e292f259d3 /xrdp/makefile_win32 | |
parent | 9c580f9a846f9db83508a1bd4b2d9a354d906fcf (diff) | |
download | xrdp-proprietary-ae38cee2f0b64f62cf569cc8b15eb18d1de7c9f0.tar.gz xrdp-proprietary-ae38cee2f0b64f62cf569cc8b15eb18d1de7c9f0.zip |
added vnc mod
Diffstat (limited to 'xrdp/makefile_win32')
-rw-r--r-- | xrdp/makefile_win32 | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/xrdp/makefile_win32 b/xrdp/makefile_win32 index 37a76bdf..5f01cbba 100644 --- a/xrdp/makefile_win32 +++ b/xrdp/makefile_win32 @@ -1,28 +1,28 @@ -# 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 all'
-#
-
-XRDPOBJ = xrdp.obj os_calls.obj xrdp_tcp.obj xrdp_iso.obj xrdp_mcs.obj \
- xrdp_sec.obj xrdp_rdp.obj xrdp_process.obj xrdp_listen.obj \
- xrdp_orders.obj xrdp_bitmap.obj xrdp_wm.obj xrdp_painter.obj \
- xrdp_list.obj xrdp_region.obj xrdp_cache.obj xrdp_font.obj \
- funcs.obj
-
-CFLAGS = -w- -O2 -Ic:\borland\bcc55\include -Ic:\openssl\include
-LDFLAGS = -Lc:\borland\bcc55\lib
-
-xrdp: $(XRDPOBJ)
- $(CC) $(LDFLAGS) libeay32.lib $(XRDPOBJ)
-
-all: lib xrdp
-
-clean:
- del *.obj *.o xrdp.exe
-
-lib:
- implib -a -w libeay32.lib c:\windows\system32\libeay32.dll
-
+# 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 all' +# + +XRDPOBJ = xrdp.obj os_calls.obj xrdp_tcp.obj xrdp_iso.obj xrdp_mcs.obj \ + xrdp_sec.obj xrdp_rdp.obj xrdp_process.obj xrdp_listen.obj \ + xrdp_orders.obj xrdp_bitmap.obj xrdp_wm.obj xrdp_painter.obj \ + xrdp_list.obj xrdp_region.obj xrdp_cache.obj xrdp_font.obj \ + funcs.obj xrdp_login_wnd.obj xrdp_file.obj + +CFLAGS = -w- -O2 -Ic:\borland\bcc55\include -Ic:\openssl\include +LDFLAGS = -Lc:\borland\bcc55\lib + +xrdp: $(XRDPOBJ) + $(CC) $(LDFLAGS) libeay32.lib $(XRDPOBJ) + +all: lib xrdp + +clean: + del *.obj *.o xrdp.exe + +lib: + implib -a -w libeay32.lib c:\windows\system32\libeay32.dll + |