diff options
author | Christian Hesse <mail@eworm.de> | 2013-04-15 22:13:25 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-04-15 22:13:25 +0200 |
commit | c6d4e6daf03df68d4c0bb756520858ee9679712c (patch) | |
tree | 13cadc0d2837a41078df8ec8e74e9cb2c9ad906b /Makefile | |
parent | 6244b57206f637557b605fe4752faf11661d88c6 (diff) | |
download | mpd-notification-c6d4e6daf03df68d4c0bb756520858ee9679712c.tar.gz mpd-notification-c6d4e6daf03df68d4c0bb756520858ee9679712c.tar.zst |
initial commit0.4.0
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 |