# Makefile for installing alco awk script
#
# alco awk script will be installed to /usr/local/bin/ and
# alco.1.gz will be instaled to /usr/local/share/man/man1/
# You must be root to perform an installation.

all:
	@echo "Run \"make install\" or \"make uninstall\""

install:
	install -o root -g root -m 644 alco.1.gz /usr/local/share/man/man1/
	install -o root -g root -m 755 alco /usr/local/bin/


uninstall:
	rm -f /usr/local/share/man/alco.1.gz
	rm -f /usr/local/bin/alco

