refractoring to use osso-game-startup
[mancala] / src / launcher / Makefile
1 # GNU Makefile -- Makefile
2 # 2009 Reto Zingg
3
4
5 CC = gcc
6
7
8 all:
9         $(CC) mancala-launcher.c -o mancala-launcher
10
11 install:        all
12         mkdir -p $(DESTDIR)/home/opt/mancala/bin/
13         cp ./mancala-launcher $(DESTDIR)/home/opt/mancala/bin/mancala-launcher
14
15 uninstall:
16         rm -rf $(DESTDIR)/home/opt/mancala/mancala-launcher
17
18 clean:
19         rm -f *.o *.core *.swp *~ *.log
20
21 clobber:        clean
22         rm -f mancala-launcher
23