Makefile.am 387 Bytes
Newer Older
dscho's avatar
dscho committed
1 2
CONSOLE_SRCS=VNConsole.c

dscho's avatar
dscho committed
3
noinst_HEADERS=VNConsole.h vga.h
dscho's avatar
dscho committed
4

dscho's avatar
dscho committed
5
CFLAGS_ADD=-I..
6

dscho's avatar
dscho committed
7
LDADD=../libvncserver/libvncserver.a @WSOCKLIB@
8
INCLUDES=-I.
dscho's avatar
dscho committed
9 10 11 12 13 14

if LINUX
bin_PROGRAMS=LinuxVNC
LinuxVNC_SOURCES=LinuxVNC.c $(CONSOLE_SRCS)
endif

dscho's avatar
dscho committed
15 16 17 18 19
if ! MINGW
VNCOMMAND=VNCommand
endif

noinst_PROGRAMS=example $(VNCOMMAND)
dscho's avatar
dscho committed
20
example_SOURCES=example.c $(CONSOLE_SRCS)
dscho's avatar
dscho committed
21 22 23
VNCommand_SOURCES=VNCommand.c $(CONSOLE_SRCS)


dscho's avatar
dscho committed
24