diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-03-01 16:28:47 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-01 16:28:47 +0000 |
commit | 3ac46586645727f3385b3ab8baa51248ba3bc1bf (patch) | |
tree | 6d5456a3b8c7b98431b98ac617715dc2ca27d908 /packages/vnc/tightvnc | |
parent | cee59f75f31aaad5e026b665fb2a1823107509ff (diff) |
tightvnc_1.3dev7.bb : add tightvnc recipe
Diffstat (limited to 'packages/vnc/tightvnc')
-rw-r--r-- | packages/vnc/tightvnc/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/vnc/tightvnc/Makefile | 23 |
2 files changed, 23 insertions, 0 deletions
diff --git a/packages/vnc/tightvnc/.mtn2git_empty b/packages/vnc/tightvnc/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/vnc/tightvnc/.mtn2git_empty diff --git a/packages/vnc/tightvnc/Makefile b/packages/vnc/tightvnc/Makefile new file mode 100644 index 0000000000..0367fbc702 --- /dev/null +++ b/packages/vnc/tightvnc/Makefile @@ -0,0 +1,23 @@ +SOURCES = argsresources.c \ +caps.c \ +colour.c \ +cursor.c \ +desktop.c \ +dialogs.c \ +fullscreen.c \ +listen.c \ +misc.c \ +popup.c \ +rfbproto.c \ +selection.c \ +shm.c \ +sockets.c \ +tunnel.c \ +vncviewer.c \ +../libvncauth/vncauth.c \ +../libvncauth/d3des.c + +tightvncviewer : $(SOURCES) + #/home/dp/zaurus/build-gcc/tmp/cross/bin/arm-linux-gcc -I../include -I/home/dp/zaurus/build-gcc/tmp/staging/arm-linux/include/ -I. -L/home/dp/zaurus/build-gcc/tmp/staging/arm-linux/lib/ -lX11 -lXaw -o vncviewer $(SOURCES) + $(CC) $(CFLAGS) $(LDFLAGS) -I. -I../include -I../libvncauth/ -lX11 -lXaw -ljpeg -lz -o tightvncviewer $(SOURCES) + |