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