You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
563 B
26 lines
563 B
# 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
|