diff options
Diffstat (limited to 'uirdesktop/makefile_win32')
-rwxr-xr-x | uirdesktop/makefile_win32 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/uirdesktop/makefile_win32 b/uirdesktop/makefile_win32 new file mode 100755 index 00000000..96a7c8ff --- /dev/null +++ b/uirdesktop/makefile_win32 @@ -0,0 +1,19 @@ +# makefile
+
+OBJS = tcp.obj iso.obj mcs.obj secure.obj rdp.obj rdp5.obj orders.obj \
+bitmap.obj cache.obj mppc.obj pstcache.obj channels.obj licence.obj \
+ssl_calls.obj
+
+UIOBJS = uimain.obj bsops.obj win32.obj
+
+#-w-aus -w-rch
+CFLAGS = -O2 -w-par -I.. -Ic:\borland\bcc55\include
+LDFLAGS = -W -Lc:\borland\bcc55\lib
+
+all: rd
+
+rd: $(OBJS) $(UIOBJS)
+ $(CC) -ewinrdesktop.exe $(LDFLAGS) $(OBJS) $(UIOBJS)
+
+clean:
+ del /q $(OBJS) $(UIOBJS) winrdesktop.exe *.tds
|