1
0
Fork 0

Merging upstream version 0.0.3.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-05 15:21:10 +01:00
parent 5a3ffa62e4
commit cb2e838cdf
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
7 changed files with 41 additions and 21 deletions

View file

@ -20,6 +20,9 @@ ifeq ($(CFG), debug)
ASAN ?= 1
endif
PREFIX ?= /usr/local
BINDIR := $(PREFIX)/bin
LD = $(CC)
RM = rm -f
MKDIR = mkdir -p
@ -121,6 +124,16 @@ clean:
$(VERBOSE_PREFIX)$(RM) $(OBJS:.o=.d)
$(VERBOSE_PREFIX)$(RM) $(OBJS:.o=.dwo)
.PHONY: install
install: all
install -D $(PROJ) $(BINDIR)/$(NAME)
.PHONY: uninstall
uninstall:
$(RM) $(BINDIR)/$(NAME)
define RELEASE_RULES
inotify-info-$(TAG).tar.gz:
git archive --prefix=inotify-info-$(TAG)/ v$(TAG) | gzip -n > $$@