summaryrefslogtreecommitdiffstats
path: root/rdp/makefile_win32
blob: ff1e406731fcbd4b96b7473dff6e03bf65634bff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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