
all:	conf

sys:
	cc sys.c -o sys

conf:	source header
	./configure

source:
	autoheader

header:
	autoconf

clean:
	-rm config.cache config.status config.log

veryclean:	clean

distclean:	veryclean

