diff options
author | dscho <dscho> | 2004-06-07 17:47:54 +0000 |
---|---|---|
committer | dscho <dscho> | 2004-06-07 17:47:54 +0000 |
commit | 00901a2eb9ec569157fad8a531a1de037ac0e2de (patch) | |
tree | 9588d5402031524e297ebcded797fae13c23f966 /client_examples/Makefile.am | |
parent | c7730d9bad3add8dc02fb1ebbc9c65a35415d43b (diff) | |
download | libtdevnc-00901a2eb9ec569157fad8a531a1de037ac0e2de.tar.gz libtdevnc-00901a2eb9ec569157fad8a531a1de037ac0e2de.zip |
add vnc2mpg, a program which makes a movie from a VNC desktop using FFMPEG
Diffstat (limited to 'client_examples/Makefile.am')
-rw-r--r-- | client_examples/Makefile.am | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/client_examples/Makefile.am b/client_examples/Makefile.am index d2a3e29..83750ab 100644 --- a/client_examples/Makefile.am +++ b/client_examples/Makefile.am @@ -1,6 +1,15 @@ DEFINES=-I.. -g -Wall LDADD = ../libvncclient/libvncclient.a +if WITH_FFMPEG +FFMPEG_HOME=@with_ffmpeg@ + +vnc2mpg_CFLAGS=-I$(FFMPEG_HOME)/libavformat -I$(FFMPEG_HOME)/libavcodec +vnc2mpg_LDADD=$(LDADD) $(FFMPEG_HOME)/libavformat/libavformat.a $(FFMPEG_HOME)/libavcodec/libavcodec.a -lm + +FFMPEG_CLIENT=vnc2mpg +endif + if HAVE_LIBSDL SDLVIEWER=SDLvncviewer @@ -9,5 +18,7 @@ SDLvncviewer_CFLAGS=`sdl-config --cflags` SDLvncviewer_LDFLAGS=`sdl-config --libs` endif -noinst_PROGRAMS=ppmtest $(SDLVIEWER) +noinst_PROGRAMS=ppmtest $(SDLVIEWER) $(FFMPEG_CLIENT) + + |