include Makefile.config
include Makefile.rules

all: Makefile.config
	cd src; make

Makefile.config:
	@echo "You must run 'configure' before 'make'."
	@exit 1

clean:
	cd src; make clean

install: all
	cd src; make install

reallyclean: clean
	rm Makefile.config
	rm configure.rerun
