include ../../config.mak

all:

.PHONY: install
install:
ifdef BIN_DIR
	install -m 0755 tok.pl $(BIN_DIR)
endif

.PHONY: uninstall
uninstall:
ifdef BIN_DIR
	rm $(BIN_DIR)/tok.pl
endif
