spiegel-keyman/common/windows/delphi/tools/Makefile
Marc Durdin eeb755f76a fix(windows): re-enable signature check
Fixes #9692.

Signature checking was skipped because we missed a ".virtual" to force
nmake to build the test and test_i3633 targets. This opened up a small
cascade of related formatting issues on Makefiles, and the fact that the
test_i3633 (has there ever been a more poorly named project?) Makefile
did not even work.

Refactored significantly, added same tests to Developer Makefile, and
also now verifying the .msi and installer executable.

We can improve this further but I'd like to get this in to avoid further
critical issues with code signing given the current broken signing
configuration.
2023-10-06 09:14:35 +07:00

57 lines
1.2 KiB
Makefile

#
# Keyman common tools Makefile
#
NOTARGET_SIGNCODE=yes
!ifdef NODELPHI
TARGETS=.virtual
!else
TARGETS=build_standards_data buildunidata devtools sentrytool test-klog verify_signatures
!endif
CLEANS=clean-tools
!include ..\Header.mak
# ----------------------------------------------------------------------
build_standards_data: .virtual
cd $(COMMON_ROOT)\tools\build_standards_data
$(MAKE) $(TARGET)
sentrytool: .virtual
cd $(COMMON_ROOT)\tools\sentrytool
$(MAKE) $(TARGET)
buildunidata: .virtual
cd $(COMMON_ROOT)\tools\buildunidata
$(MAKE) $(TARGET)
verify_signatures: .virtual
cd $(COMMON_ROOT)\tools\verify_signatures
$(MAKE) $(TARGET)
devtools: .virtual
!ifdef NODELPHI
echo Skipping devtools
!else
cd $(COMMON_ROOT)\tools\devtools
$(MAKE) $(TARGET)
!endif
test-klog: .virtual
cd $(COMMON_ROOT)\tools\test-klog
$(MAKE) $(TARGET)
# ----------------------------------------------------------------------
clean-tools:
cd $(COMMON_ROOT)\tools
-del version.txt
!include ..\Target.mak
# ----------------------------------------------------------------------
# EOF
# ----------------------------------------------------------------------