bugfix: windows: make clean: we did not clear many windows-specific files.

This commit is contained in:
Yichun Zhang (agentzh)
2019-09-07 23:40:52 -07:00
parent a717ebd523
commit 395bed2b14
2 changed files with 91 additions and 90 deletions

2
util/configure vendored
View File

@ -1607,7 +1607,7 @@ sub gen_makefile {
print $out "install: all\n\t" . join("\n\t", @make_install_cmds) . "\n\n";
print $out "clean:\n\trm -rf build\n";
print $out "clean:\n\trm -rf build *.exe *.dll openresty-*\n";
close $out;
}