summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-12-02 01:57:09 +0000
committerjsorg71 <jsorg71>2005-12-02 01:57:09 +0000
commit1203f776ce8875583fb6e08f9b8e9450ead68a23 (patch)
treee5e1e1a13cc110d0fba68ff7dd9c7ad0fab7a821
parent4cdc850a06e4079cf1cd221e5cb7fc21e54bb356 (diff)
downloadxrdp-proprietary-1203f776ce8875583fb6e08f9b8e9450ead68a23.tar.gz
xrdp-proprietary-1203f776ce8875583fb6e08f9b8e9450ead68a23.zip
added win32 makefile
-rw-r--r--rdp/makefile_win3231
1 files changed, 31 insertions, 0 deletions
diff --git a/rdp/makefile_win32 b/rdp/makefile_win32
new file mode 100644
index 00000000..ff1e4067
--- /dev/null
+++ b/rdp/makefile_win32
@@ -0,0 +1,31 @@
+# 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'
+#
+
+RDPOBJ = rdp.obj rdp_tcp.obj rdp_iso.obj rdp_mcs.obj \
+ rdp_sec.obj rdp_rdp.obj rdp_orders.obj \
+ rdp_bitmap.obj rdp_lic.obj \
+ os_calls.obj \
+ ssl_calls.obj
+
+CFLAGS = -w- -O2 -I../common -Ic:/borland/bcc55/include
+LDFLAGS = -Lc:/borland/bcc55/lib
+
+rdp: $(RDPOBJ)
+ $(CC) $(LDFLAGS) -WD -erdp.dll $(RDPOBJ)
+
+all: rdp
+
+clean:
+ del $(XRDPOBJ) rdp.dll
+
+os_calls.obj:
+ $(CC) $(CFLAGS) -c ../common/os_calls.c
+
+ssl_calls.obj:
+ $(CC) $(CFLAGS) -c ../common/ssl_calls.c
+