diff options
author | Rory Bradford <roryrjb@gmail.com> | 2020-08-30 12:15:39 +0100 |
---|---|---|
committer | Rory Bradford <roryrjb@gmail.com> | 2020-08-30 12:15:39 +0100 |
commit | 1c5aba7f1b2a53cdcaf896df118f3c7b42c0251c (patch) | |
tree | 2350946cee55c9a564b857f23d3dd5b396fda65b /contrib/rfgrep/Makefile | |
parent | 4d872677b173d5380e5ab63b17e45d876cc3e864 (diff) | |
download | rf-1c5aba7f1b2a53cdcaf896df118f3c7b42c0251c.tar.gz |
Add rfgrep contrib script
Signed-off-by: Rory Bradford <roryrjb@gmail.com>
Diffstat (limited to 'contrib/rfgrep/Makefile')
-rw-r--r-- | contrib/rfgrep/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/rfgrep/Makefile b/contrib/rfgrep/Makefile new file mode 100644 index 0000000..1468fec --- /dev/null +++ b/contrib/rfgrep/Makefile @@ -0,0 +1,6 @@ +BIN = rfgrep +PREFIX = /usr/local + +install: + mkdir -p $(DESTDIR)$(PREFIX)/bin + install -m755 $(BIN) $(DESTDIR)$(PREFIX)/bin/ |