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.
|
CFLAGS = -I ..
|
|
LDADD = ../libvncserver.a
|
|
|
|
noinst_PROGRAMS=zippy
|
|
|
|
if CYGIPC
|
|
LD_CYGIPC=-lcygipc
|
|
endif
|
|
|
|
if HAVE_X
|
|
bin_PROGRAMS=x11vnc
|
|
x11vnc_SOURCES=x11vnc.c
|
|
INCLUDES=@X_CFLAGS@
|
|
x11vnc_LDADD=@X_LIBS@ $(LD_CYGIPC) $(LDADD)
|
|
endif
|
|
|
|
zippy_SOURCES=zippy.c
|
|
|