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.
xrdp-proprietary/vnc/Makefile

15 lines
207 B

20 years ago
VNCOBJ = os_calls.o vnc.o d3des.o vncauth.o
CFLAGS = -Wall -O2
LDFLAGS = -shared
LIBS = -ldl
CC = gcc
all: vnc
vnc: $(VNCOBJ)
$(CC) $(LDFLAGS) -o libvnc.so $(VNCOBJ) $(LIBS)
clean:
rm -f *.o libvnc.so