BINDIR=/usr/local/bin
LIBDIR=/usr/local/lib/xpccard
PROG=xpccard
CONFIG=config

all:
	uudecode power.uue

clean:
	rm -f power.gif

install: all
	if [ ! -d ${LIBDIR} ] ; then mkdir ${LIBDIR}; fi;
	install -c -o root -g operator -m 550 ${PROG} ${BINDIR}
	install -c -o root -g operator -m 440 ${CONFIG} ${LIBDIR}
	install -c -o root -g operator -m 440 power.gif ${LIBDIR}

