summaryrefslogtreecommitdiff
path: root/Makefile
blob: 4cf502d76f8969a997c2b24a9e2149108383c201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
build: clean
	cc -o trt tongues.c session.c utils.c

clean:
	rm -rf trt

install: build
	mkdir -p /usr/local/bin
	cp -f trt /usr/local/bin
	chmod 755 /usr/local/bin

uninstall:
	rm -rf /usr/local/bin/trt