diff --git a/Makefile b/Makefile index e2646864..2ed55c99 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,10 @@ endif .PHONY: all all: + @if test ! -e config.h; then \ + echo "You didn't run ./configure ... exiting."; \ + exit 1; \ + fi @for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir || exit 1; \ done