diff options
author | jsorg71 <jsorg71> | 2005-03-11 02:23:30 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-03-11 02:23:30 +0000 |
commit | 5140dac0f5d95b388e782fc686beb3dc474f7c9a (patch) | |
tree | 443bec3d095f4e1a29510e8566dbc318182817f1 /xrdp/makefile_win32 | |
parent | 777893bdd6f4e98f2074ccc3b9f0d890bc2ac387 (diff) | |
download | xrdp-proprietary-5140dac0f5d95b388e782fc686beb3dc474f7c9a.tar.gz xrdp-proprietary-5140dac0f5d95b388e782fc686beb3dc474f7c9a.zip |
makefile and header changes
Diffstat (limited to 'xrdp/makefile_win32')
-rw-r--r-- | xrdp/makefile_win32 | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/xrdp/makefile_win32 b/xrdp/makefile_win32 index 5f01cbba..0ddd82c9 100644 --- a/xrdp/makefile_win32 +++ b/xrdp/makefile_win32 @@ -3,17 +3,20 @@ # 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' +# run 'set PATH=c:\borland\bcc55\bin' and run 'make -f makefile_win32 all' # -XRDPOBJ = xrdp.obj os_calls.obj xrdp_tcp.obj xrdp_iso.obj xrdp_mcs.obj \ +XRDPOBJ = xrdp.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 + funcs.obj xrdp_login_wnd.obj xrdp_file.obj xrdp_interface.obj \ + xrdp_bitmap_compress.obj \ + os_calls.obj -CFLAGS = -w- -O2 -Ic:\borland\bcc55\include -Ic:\openssl\include -LDFLAGS = -Lc:\borland\bcc55\lib +CFLAGS = -w- -O2 -I../common +C_OS_FLAGS = -w- -O2 -Ic:/borland/bcc55/include -Ic:/openssl/include -DUSE_OPENSSL -c +LDFLAGS = -Lc:/borland/bcc55/lib xrdp: $(XRDPOBJ) $(CC) $(LDFLAGS) libeay32.lib $(XRDPOBJ) @@ -21,8 +24,10 @@ xrdp: $(XRDPOBJ) all: lib xrdp clean: - del *.obj *.o xrdp.exe + del $(XRDPOBJ) xrdp.exe lib: - implib -a -w libeay32.lib c:\windows\system32\libeay32.dll + implib -a -w libeay32.lib c:/windows/system32/libeay32.dll +os_calls.obj: + $(CC) $(C_OS_FLAGS) ../common/os_calls.c |