blob: 7839474f8920b37dad94d5675e3373723ca50414 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# udev-block-notify - Notify about udev block events
# commands
CC := gcc
MD := markdown
INSTALL := install
RM := rm
CP := cp
# flags
CFLAGS += -std=c11 -O2 -fPIC -Wall -Werror
CFLAGS += $(shell pkg-config --cflags --libs libudev)
CFLAGS += $(shell pkg-config --cflags --libs libnotify)
CFLAGS_SYSTEMD := $(shell pkg-config --cflags --libs libsystemd 2>/dev/null)
ifneq ($(CFLAGS_SYSTEMD),)
CFLAGS += -DHAVE_SYSTEMD $(CFLAGS_SYSTEMD)
endif
LDFLAGS += -Wl,-z,now -Wl,-z,relro -pie
# this is just a fallback in case you do not use git but downloaded
# a release tarball...
VERSION := 0.7.10
all: udev-block-notify README.html
udev-block-notify: udev-block-notify.c config.h version.h
$(CC) $(CFLAGS) $(LDFLAGS) -o udev-block-notify udev-block-notify.c
config.h: config.def.h
$(CP) config.def.h config.h
version.h: $(wildcard .git/HEAD .git/index .git/refs/tags/*) Makefile
printf "#ifndef VERSION\n#define VERSION \"%s\"\n#endif\n" $(shell git describe --long 2>/dev/null || echo ${VERSION}) > $@
README.html: README.md
$(MD) README.md > README.html
install: install-bin install-doc
install-bin: udev-block-notify
$(INSTALL) -D -m0755 udev-block-notify $(DESTDIR)/usr/bin/udev-block-notify
$(INSTALL) -D -m0644 systemd/udev-block-notify.service $(DESTDIR)/usr/lib/systemd/user/udev-block-notify.service
install-doc: README.html
$(INSTALL) -D -m0644 README.md $(DESTDIR)/usr/share/doc/udev-block-notify/README.md
$(INSTALL) -D -m0644 README.html $(DESTDIR)/usr/share/doc/udev-block-notify/README.html
$(INSTALL) -D -m0644 screenshots/usb.png $(DESTDIR)/usr/share/doc/udev-block-notify/screenshots/usb.png
$(INSTALL) -D -m0644 screenshots/optical.png $(DESTDIR)/usr/share/doc/udev-block-notify/screenshots/optical.png
clean:
$(RM) -f *.o *~ README.html udev-block-notify version.h
distclean:
$(RM) -f *.o *~ README.html udev-block-notify config.h version.h
release:
git archive --format=tar.xz --prefix=udev-block-notify-$(VERSION)/ $(VERSION) > udev-block-notify-$(VERSION).tar.xz
gpg --armor --detach-sign --comment udev-block-notify-$(VERSION).tar.xz udev-block-notify-$(VERSION).tar.xz
git notes --ref=refs/notes/signatures/tar add -C $$(git archive --format=tar --prefix=udev-block-notify-$(VERSION)/ $(VERSION) | gpg --armor --detach-sign --comment udev-block-notify-$(VERSION).tar | git hash-object -w --stdin) $(VERSION)
|