]> git.proxmox.com Git - mirror_edk2.git/commitdiff
BaseTools: Robustness for multiple build environments
authorBurt Silverman <burtms@gmail.com>
Sat, 7 Sep 2019 20:33:53 +0000 (16:33 -0400)
committerLiming Gao <liming.gao@intel.com>
Wed, 11 Sep 2019 14:30:16 +0000 (22:30 +0800)
When building BaseTools, GNUmakefile builds create directory
BaseTools/Source/C/libs/. On the other hand, Makefile builds use libs
as an nmake pseudo target, so it either must NOT exist as a file or
directory, OR it must phony dependency like .PHONY. The latter
solution conflicts with NmakeSubdirs.py. Therefore, I make it go away
in the cleanall target. I could also add it to the clean target, but
it strikes me that cleanall should be more forceful.

Signed-off-by: Burt Silverman <burtms@gmail.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
BaseTools/Source/C/Makefile

index 217fc2b91d7bb9ac370f54a271a9f9710e1baa83..e8f8abe59a794521c54063eadf8e787240129ea7 100644 (file)
@@ -63,6 +63,8 @@ clean:
 cleanall:\r
   @if defined PYTHON_COMMAND $(PYTHON_COMMAND) Makefiles\NmakeSubdirs.py cleanall $(LIBRARIES) $(APPLICATIONS)\r
   @if not defined PYTHON_COMMAND $(PYTHON_HOME)\python.exe Makefiles\NmakeSubdirs.py cleanall $(LIBRARIES) $(APPLICATIONS)\r
+# Next line protects the libs pseudo target from inadvertent GNU make activity\r
+  if exist libs RMDIR /S /Q libs\r
 \r
 !INCLUDE Makefiles\ms.rule\r
 \r