#
#	Rough makefile
#
CC = gcc
CFLAGS = -g -O

xcshow:	xcshow.c
	$(CC) $(CFLAGS) -o xcshow xcshow.c

install:	xcshow
	install -s -m 755 xcshow /usr/local/bin
	install -c -m 755 vixc.sh /usr/local/bin/vixc

clean:
	-rm -f *.o xcshow errs core

