Commit 82408fc1 authored by Stephen Hemminger's avatar Stephen Hemminger

Workaround for repeated distclean

The subdirectory makefiles need Config file to exist.
Therefore create it, then run make clean, then remove it.
parent 3f5c1a01
......@@ -78,7 +78,9 @@ clean:
@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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment