remove old files add new sources
[mancala] / src / launcher / Makefile
diff --git a/src/launcher/Makefile b/src/launcher/Makefile
deleted file mode 100644 (file)
index 16cc005..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-# GNU Makefile -- Makefile
-# 2009 Reto Zingg
-
-
-CC = gcc
-
-
-all:
-       $(CC) mancala-launcher.c -o mancala-launcher
-
-install:       all
-       mkdir -p $(DESTDIR)/home/opt/mancala/bin/
-       cp ./mancala-launcher $(DESTDIR)/home/opt/mancala/bin/mancala-launcher
-
-uninstall:
-       rm -rf $(DESTDIR)/home/opt/mancala/mancala-launcher
-
-clean:
-       rm -f *.o *.core *.swp *~ *.log
-
-clobber:       clean
-       rm -f mancala-launcher
-