X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fplugin%2FMakefile;fp=src%2Fplugin%2FMakefile;h=0000000000000000000000000000000000000000;hb=1adeebe9572cc4441d114687606e45cde11f5b2b;hp=c55993b3f894c4b0e5d10c4c513949601494f5f0;hpb=860de21ec6c253290ab3fc213cb11f350b193d05;p=mancala diff --git a/src/plugin/Makefile b/src/plugin/Makefile deleted file mode 100644 index c55993b..0000000 --- a/src/plugin/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# GNU Makefile -- Makefile -# 2009 Reto Zingg - -CC = gcc -DBG = gdb -STD = _GNU_SOURCE -CFLAGS = `pkg-config hildon-1 --cflags` -I/usr/include/dbus-1.0/ -I/usr/lib/dbus-1.0/include/ -LFLAGS = -shared `pkg-config hildon-1 --libs` - -MAIN_OBJ = mancala-ui-plugin.o - - - -#'$<' is filename of input, '$@' is filename of output -.c.o: - $(CC) -c -g$(DBG) -Wall $(CFLAGS) -D$(STD) $< -.h.o: - $(CC) -c -g$(DBG) -Wall $(CFLAGS) -D$(STD) $< - -all: $(MAIN_OBJ) - $(CC) $(LFLAGS) $(MAIN_OBJ) -o mancala-ui-plugin.so - -install: all - mkdir -p $(DESTDIR)/home/opt/mancala/plugin/ - cp mancala-ui-plugin.so $(DESTDIR)/home/opt/mancala/plugin/ - -clean: - rm -f *.o *.core *.swp *~ *.log - -clobber: clean - rm -f mancala-ui-plugin.so - - -