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.
28 lines
422 B
28 lines
422 B
INCLUDES = -I$(top_srcdir)
|
|
|
|
CONSOLE_SRCS=VNConsole.c
|
|
|
|
noinst_HEADERS=VNConsole.h vga.h
|
|
|
|
LDADD=../libvncserver/libvncserver.la @WSOCKLIB@
|
|
|
|
if LINUX
|
|
if ! MINGW
|
|
if ! ANDROID
|
|
bin_PROGRAMS=LinuxVNC
|
|
LinuxVNC_SOURCES=LinuxVNC.c $(CONSOLE_SRCS)
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
if ! MINGW
|
|
VNCOMMAND=VNCommand
|
|
endif
|
|
|
|
noinst_PROGRAMS=example $(VNCOMMAND)
|
|
example_SOURCES=example.c $(CONSOLE_SRCS)
|
|
VNCommand_SOURCES=VNCommand.c $(CONSOLE_SRCS)
|
|
|
|
|
|
|