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..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 |