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.
19 lines
333 B
19 lines
333 B
CONSOLE_SRCS=VNConsole.c
|
|
|
|
noinst_HEADERS=VNConsole.h vga.h
|
|
|
|
CFLAGS_ADD=-I..
|
|
|
|
LDADD=../libvncserver/libvncserver.a
|
|
INCLUDES=-I.
|
|
|
|
if LINUX
|
|
bin_PROGRAMS=LinuxVNC
|
|
LinuxVNC_SOURCES=LinuxVNC.c $(CONSOLE_SRCS)
|
|
endif
|
|
|
|
noinst_PROGRAMS=VNCommand example
|
|
VNCommand_SOURCES=VNCommand.c $(CONSOLE_SRCS)
|
|
example_SOURCES=example.c $(CONSOLE_SRCS)
|
|
|