summaryrefslogtreecommitdiffstats
path: root/vncterm/Makefile.am
blob: cad88a21e07434a12a27a1ece92b170f09ca83b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CONSOLE_SRCS=VNConsole.c

noinst_HEADERS=VNConsole.h

LDADD=-L.. -lvncserver
INCLUDES=-I. -I../include

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)