remove old files add new sources
[mancala] / src / launcher / mancala-launcher.c
diff --git a/src/launcher/mancala-launcher.c b/src/launcher/mancala-launcher.c
deleted file mode 100644 (file)
index 20462e2..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
-* This file is part of Mancala
-*
-* Idea from Crazyparking
-*
-* Copyright (c) 2009 Reto Zingg
-*
-* This software is free software; you can redistribute it and/or
-* modify it under the terms of the GNU Lesser General Public License
-* as published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful, but
-* WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free Software
-* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA
-*/
-
-#include <stdio.h>
-#include <unistd.h>
-
-char *wrapper_args[] = {"/usr/games/wrapper/wrapper",
-                        "/home/opt/mancala/data/mancala.game",
-                        NULL};
-
-int main(int argc, char *argv[])
-{
-    
-    if (execv ("/usr/games/wrapper/wrapper", wrapper_args) == -1) {
-        printf("Launching mancala wrapper failed\n");
-    }
-
-    return 0;
-}