Merging upstream version 0.0.3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
5a3ffa62e4
commit
cb2e838cdf
7 changed files with 41 additions and 21 deletions
13
Makefile
13
Makefile
|
@ -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 > $$@
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue