summaryrefslogtreecommitdiffstats
path: root/vnc/makefile_win32
blob: 69b6fcfc70f7fc2fa33af5555348671fa2964cef (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
# 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'
#

VNCOBJ = vnc.obj os_calls.obj d3des.obj
CFLAGS = -w- -O2 -I../common -Ic:/borland/bcc55/include
LDFLAGS = -Lc:/borland/bcc55/lib

all: vnc

vnc: $(VNCOBJ)
	$(CC) $(LDFLAGS) -WD -evnc.dll $(VNCOBJ)

clean:
	del $(VNCOBJ) vnc.dll

os_calls.obj:
	$(CC) $(CFLAGS) -c ../common/os_calls.c

d3des.obj:
	$(CC) $(CFLAGS) -c ../common/d3des.c