add perf target to windows makefile

Signed-off-by: Cornu, Marcel D <marcel.d.cornu@intel.com>
This commit is contained in:
Cornu, Marcel D 2024-11-19 11:57:16 +00:00 committed by Pablo de Lara
parent 496255cda6
commit 00d6e6fe87
2 changed files with 4 additions and 0 deletions

View File

@ -335,6 +335,8 @@ perfs = \
perfs: lib $(perfs) perfs: lib $(perfs)
$(perfs): $(@B).obj $(perfs): $(@B).obj
perf: $(perfs)
!$?
progs = \ progs = \
igzip.exe igzip.exe

View File

@ -99,6 +99,8 @@ endif
@echo '' >> $@ @echo '' >> $@
@echo 'perfs: lib $$(perfs)' >> $@ @echo 'perfs: lib $$(perfs)' >> $@
@echo '$$(perfs): $$(@B).obj' >> $@ @echo '$$(perfs): $$(@B).obj' >> $@
@echo 'perf: $$(perfs)' >> $@
@echo ' !$$?' >> $@
@echo '' >> $@ @echo '' >> $@
@printf 'progs =' >> $@ @printf 'progs =' >> $@
@$(foreach prog, $(notdir $(bin_PROGRAMS)), printf " %s\n\t%s.exe" \\ $(prog) >> $@; ) @$(foreach prog, $(notdir $(bin_PROGRAMS)), printf " %s\n\t%s.exe" \\ $(prog) >> $@; )