all:
	@if test ! -f src/Makefile; then ./configure; fi
	cd src && make

install:
	@if test ! -f src/Makefile; then ./configure; fi
	cd src && make $@

install-strip:
	@if test ! -f src/Makefile; then ./configure; fi
	cd src && make $@

uninstall:
	@if test ! -f src/Makefile; then ./configure; fi
	cd src && make $@

clean:
	@if test -f src/Makefile; then cd src && make $@; fi

distclean:
	rm -f config.status config.log config.cache
	@if test -f src/Makefile; then cd src && make $@; fi
