diff --git a/configure.ac b/configure.ac
index 3ae432a0b380e951c45c372d924b8803fb266148..a2862648f8229b93330cb68282b07e461c002df6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,6 @@ AC_CONFIG_FILES([libs/Makefile \
   libs/utilspp/singleton/Makefile])
   
 AC_CONFIG_FILES([src/Makefile \
-  src/sflphone \
   src/audio/Makefile \
   src/audio/codecs/Makefile
   src/audio/codecs/ilbc/Makefile \
diff --git a/src/sflphone.in b/src/sflphone.in
deleted file mode 100755
index da2108f8afa1c9e604575a7c5de3b6424d1ed940..0000000000000000000000000000000000000000
--- a/src/sflphone.in
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-# SFLphone bin launcher script v 3
-# Setup ld's environment
-
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-
-LD_LIBRARY_PATH=@libdir@:${LD_LIBRARY_PATH}
-export LD_LIBRARY_PATH
-
-export PA_ALSA_PLUGHW=1
-
-message="Warning, you probably did not extract the archive in the / directory,
-you must edit this script ($0) and change SFLPHONE_DIR to the correct location.
-@libexecdir@ must contain the provided libraries."
-if [ ! -d ${SFLPHONE_DIR} ]; then
-  echo $message
-  exit 1
-else
-  if [ ! -d @libexecdir@ ]; then
-    echo $message
-    exit 1
-  fi
-fi
-
-# Let's try to go..
-PATH=@libexecdir@:${PATH}
-binaryqtname=sflphone-qt
-binaryqt=@libexecdir@/${binaryqtname}
-binarycliname=sflphone-cli
-binarycli=@libexecdir@/${binarycliname}
-if [ "$1" != "--text" ]; then
-  if [ -x ${binaryqt} ]; then
-    exec $binaryqt $@
-  else
-    echo "Could not find the ${binaryqtname} executable in @libexecdir@ !"
-    exit 1
-  fi
-else 
-  if [ -x ${binarycli} ]; then
-    shift
-    SFLPHONE_CORE_DIR=@libexecdir@ exec $binarycli $@
-  else
-    echo "Could not find the ${binarycliname} executable in @libexecdir@ !"
-    exit 1
-  fi
-fi
-
-# EOF