# Makefile: a makefile
# Location: $(TOP)/bin
# Executed-by: $(TOP)/Makefile

BINDIR=/tmp/aum/bin

all			: pas

pas			: pas.sh
	sh pas.sh

install		:
	install -c pas $(BINDIR)

clean		:
	rm -f pas *~
