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

clean:
	rm -rf gw

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

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