summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8dc01fe57f7b63d97f016c51d676bacaaf05c952 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
PREFIX ?= /usr/local
BINDIR ?= /bin

LDLIBS = -lpcre2-8

all: bgrep

clean:
	rm -f bgrep

bgrep: bgrep.c

install:
	install bgrep -t "$(DESTDIR)$(PREFIX)$(BINDIR)"

uninstall:
	rm -f "$(DESTDIR)$(PREFIX)$(BINDIR)/bgrep"

.PHONY: all clean install uninstall