diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f207c3f --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +# udev-block-notify - Notify about udev block events + +CC := gcc +CFLAGS += $(shell pkg-config --cflags --libs libudev) \ + $(shell pkg-config --cflags --libs blkid) \ + $(shell pkg-config --cflags --libs libnotify) +VERSION = $(shell git describe --tags --long) + +all: udev-block-notify.c + $(CC) $(CFLAGS) -o udev-block-notify udev-block-notify.c \ + -DVERSION="\"$(VERSION)\"" + +clean: + /bin/rm -f *.o *~ udev-block-notify |