summaryrefslogtreecommitdiff
path: root/Makefile
blob: abd6a79ad2899d77780a6e0616c4fa8e40ddcc62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
PREFIX ?= /usr/local
BINDIR ?= ${PREFIX}/bin

install:tcvt.py optcvt.sh.transformed
	install -m755 tcvt.py "${DESTDIR}${BINDIR}/tcvt"
	install -m755 optcvt.sh.transformed "${DESTDIR}${BINDIR}/optcvt"
build:optcvt.sh.transformed
clean:
	rm -f optcvt.sh.transformed

optcvt.sh.transformed:optcvt.sh
	sed 's!^TCVT=.*!TCVT="${BINDIR}/tcvt"!' < $< > $@

.PHONY:build install clean