summaryrefslogtreecommitdiffstats
path: root/vncterm/Makefile.am
diff options
context:
space:
mode:
authordscho <dscho>2003-02-09 18:05:54 +0000
committerdscho <dscho>2003-02-09 18:05:54 +0000
commit23f45bc7641dbe9b87ba281cf54ba844fe7edcee (patch)
treefdebf0bd19eaed02335ff89e1d431acb93b0dc16 /vncterm/Makefile.am
parent28a84b63fe186a443704ade90a3e6370f127a2ec (diff)
downloadlibtdevnc-23f45bc7.tar.gz
libtdevnc-23f45bc7.zip
included vncterm
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)
+