aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e6fb4c388ce1da358708106ec27735ffb94a1068 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
PY3_SHEBANG = /usr/bin/env/ python3


.PHONY: all
all: bfind

bfind: src/bfind.py
	cp "$<" "$@"
	sed -i 's:/usr/bin/env/ python3:$(PY3_SHEBANG):' "$@"


.PHONY: clean
clean:
	-rm -- bfind