From: Geoffroy Couprie Date: Thu, 4 Sep 2008 13:10:15 +0000 (+0200) Subject: WinCE: build vlc.exe (+ modifications) X-Git-Tag: 1.0.0-pre1~3420 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=528a7cab1f4ff035914ac05011bc1bfbd273081b;p=vlc WinCE: build vlc.exe (+ modifications) Signed-off-by: RĂ©mi Denis-Courmont --- 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