Workaround for repeated distclean

The subdirectory makefiles need Config file to exist.
Therefore create it, then run make clean, then remove it.
diff --git a/Makefile b/Makefile
index 77a85c6..c03d74c 100644
--- a/Makefile
+++ b/Makefile
@@ -78,7 +78,9 @@
 	@for i in $(SUBDIRS) doc; \
 	do $(MAKE) $(MFLAGS) -C $$i clean; done
 
-clobber: clean
+clobber:
+	touch Config
+	$(MAKE) $(MFLAGS) clean
 	rm -f Config
 
 distclean: clobber