From 528a7cab1f4ff035914ac05011bc1bfbd273081b Mon Sep 17 00:00:00 2001 From: Geoffroy Couprie Date: Thu, 4 Sep 2008 15:10:15 +0200 Subject: [PATCH] WinCE: build vlc.exe (+ modifications) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémi Denis-Courmont --- bin/Makefile.am | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/bin/Makefile.am b/bin/Makefile.am index 9e61d3470e..1295e32926 100644 --- a/bin/Makefile.am +++ b/bin/Makefile.am @@ -8,15 +8,20 @@ AM_CFLAGS = `$(VLC_CONFIG) --cflags vlc` if !HAVE_WIN32 +if !HAVE_WINCE bin_PROGRAMS += vlc-wrapper +vlc_SOURCES = vlc.c +endif endif EXTRA_vlc_SOURCES = vlc.c winvlc.c -if !HAVE_WIN32 -vlc_SOURCES = vlc.c -else +if HAVE_WIN32 +vlc_SOURCES = winvlc.c +endif +if HAVE_WINCE vlc_SOURCES = winvlc.c endif + vlc_wrapper_SOURCES = rootwrap.c vlc_DEPENDENCIES = ../src/libvlc.la -- 2.39.2