# Makefile for inotail # # Copyright (C) 2006-2007 Tobias Klauser # # Licensed under the terms of the GNU General Public License; version 2 or later. VERSION = 0.2 # Paths prefix = /usr/local DESTDIR = CC := gcc CFLAGS := $(CFLAGS) -W -Wall -pipe -D_USE_SOURCE -DVERSION="\"$(VERSION)\"" \ -Wstrict-prototypes -Wsign-compare -Wshadow -Wchar-subscripts \ -Wmissing-declarations -Wpointer-arith -Wcast-align -Wmissing-prototypes LDFLAGS := # Compile with 'make DEBUG=true' to enable debugging DEBUG = false ifeq ($(strip $(DEBUG)),true) CFLAGS += -g -DDEBUG LDFLAGS += endif all: inotail inotail: inotail.o %.o: %.c %.h $(CC) $(CFLAGS) -c $< -o $@ install: inotail install -m 775 -D inotail $(DESTDIR)$(prefix)/bin/inotail install -m 644 -D inotail.1 $(DESTDIR)$(prefix)/share/man/man1/inotail.1 cscope: cscope -b release: git-archive --format=tar --prefix=inotail-$(VERSION)/ HEAD | gzip -9v > ../inotail-$(VERSION).tar.gz git-archive --format=tar --prefix=inotail-$(VERSION)/ HEAD | bzip2 -9v > ../inotail-$(VERSION).tar.bz2 clean: rm -f inotail *.o cscope.* ite-cleanup net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/Documentation/fault-injection
diff options
context:
space:
mode:
authorKevin Peng <kkpengboy@gmail.com>2016-12-04 02:58:02 -0800
committerJonathan Corbet <corbet@lwn.net>2016-12-05 14:18:48 -0700
commit20b786eb2598ac10c9743535b65611ce808c8d71 (patch)
tree6090ff733fd6d36b527b393438b41c11fb824457 /Documentation/fault-injection
parentaad800403a8761073511abb93075738302983956 (diff)
Docs: change sh -> awk in REPORTING-BUGS
scripts/ver_linux has been rewritten as an awk script; update documentation to reflect this fact. Signed-off-by: Kevin Peng <kkpengboy@gmail.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/fault-injection')