diff options
author | Christian Hesse <mail@eworm.de> | 2013-07-08 17:13:22 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-07-08 17:13:22 +0200 |
commit | b73b3ce63caf39256d65283abcb8def6cac1de94 (patch) | |
tree | 7d5a5f16c25c82ec5bcef5bb08698a52760bf40b /Makefile | |
parent | af1f5cd8a2db5c7309bcc1920f11e7be01581137 (diff) | |
download | netlink-notify-b73b3ce63caf39256d65283abcb8def6cac1de94.tar.gz netlink-notify-b73b3ce63caf39256d65283abcb8def6cac1de94.tar.zst |
update Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,7 @@ CC := gcc CONVERT := inkscape --export-png INSTALL := install +RM := rm CFLAGS += -O2 -Wall -Werror CFLAGS += $(shell pkg-config --cflags --libs libnotify) VERSION = $(shell git describe --tags --long) @@ -32,4 +33,4 @@ install: $(INSTALL) -D -m0755 netlink-notify-away.png $(DESTDIR)/usr/share/icons/hicolor/48x48/status/netlink-notify-away.png clean: - /bin/rm -f *.o *.png *~ netlink-notify + $(RM) -f *.o *.png *~ netlink-notify |