if [ "$1" = "install" ]; then
	cp ./tomotext /usr/bin/tomotext
else
	gcc -Wall -O3 -g main.c -o tomotext `pkg-config --cflags gtk+-2.0` \
`pkg-config --libs gtk+-2.0`
fi
