summaryrefslogtreecommitdiffstats
path: root/vncterm/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'vncterm/Makefile.am')
-rw-r--r--vncterm/Makefile.am16
1 files changed, 16 insertions, 0 deletions
diff --git a/vncterm/Makefile.am b/vncterm/Makefile.am
new file mode 100644
index 0000000..cad88a2
--- /dev/null
+++ b/vncterm/Makefile.am
@@ -0,0 +1,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)
+