diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9cf6a78 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# mpd-notification - Notify about tracks played by mpd + +CC := gcc +CFLAGS += $(shell pkg-config --cflags --libs libmpdclient) $(shell pkg-config --cflags --libs libnotify) +VERSION = $(shell git describe --tags --long) + +all: mpd-notification.c + $(CC) $(CFLAGS) -o mpd-notification mpd-notification.c \ + -DVERSION="\"$(VERSION)\"" + +clean: + /bin/rm -f *.o *~ mpd-notification |