From c6d4e6daf03df68d4c0bb756520858ee9679712c Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Mon, 15 Apr 2013 22:13:25 +0200 Subject: initial commit --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3-54-g00ecf