Makefile: Optimize cleaning

NMAKE invocations are costly (slow, no-parallel support).

Rather than pinpoint cleaning of each combination of $(LANG), $(PLAT)
and $(CFG) related files, we do the wildcard cleaning of all packaging
files.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2020-03-03 12:54:15 +01:00
parent 90e21bd6e6
commit 5b452a25fe
4 changed files with 2 additions and 7 deletions

@ -1 +1 @@
Subproject commit f124bc89ad4e07d0b7166bd42b6e0a6eb5af07d2 Subproject commit 152cb014ab7c2f031b8f42f15181c077f3688926

BIN
Makefile

Binary file not shown.

Binary file not shown.

View File

@ -1,7 +1,2 @@
@echo off @echo off
nmake.exe /ls Clean LANG=en_US CFG=Debug PLAT=Win32 nmake.exe /ls Clean
nmake.exe /ls Clean LANG=en_US CFG=Debug PLAT=x64
nmake.exe /ls Clean LANG=en_US CFG=Debug PLAT=ARM64
nmake.exe /ls Clean LANG=en_US CFG=Release PLAT=Win32
nmake.exe /ls Clean LANG=en_US CFG=Release PLAT=x64
nmake.exe /ls Clean LANG=en_US CFG=Release PLAT=ARM64