diff options
author | Christian Hesse <mail@eworm.de> | 2013-04-15 22:36:55 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-04-15 22:36:55 +0200 |
commit | ee6296abb65f348e17464145b12d388dd970deee (patch) | |
tree | 522719c55ae54921163bf355070c15c892e5c820 /Makefile | |
parent | 1d9e6a40051e63662dc21d4d402e7d09178ea393 (diff) | |
download | netlink-notify-ee6296abb65f348e17464145b12d388dd970deee.tar.gz netlink-notify-ee6296abb65f348e17464145b12d388dd970deee.tar.zst |
initial commit0.3.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..fbf9ec9 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# netlink-notify - Notify about netlink changes + +CC := gcc +CFLAGS += $(shell pkg-config --cflags --libs libmnl) $(shell pkg-config --cflags --libs libnotify) +VERSION = $(shell git describe --tags --long) + +all: netlink-notify.c + $(CC) $(CFLAGS) -o netlink-notify netlink-notify.c \ + -DVERSION="\"$(VERSION)\"" + +clean: + /bin/rm -f *.o *~ netlink-notify |