spiegel-keyman/windows/src/test/Makefile
Marc Durdin 988fec305c chore(windows): enable build without Delphi installed
This makes it possible to run `set NODELPHI=1`, `nmake build` and then
only non-Delphi projects will be built.
2021-12-10 00:10:54 +11:00

37 lines
801 B
Makefile

#
# Tests Makefile.
#
# ----------------------------------------------------------------------
!ifdef NODELPHI
TARGETS=.virtual
!else
TARGETS=test_i3633
!endif
CLEAN=test_i3633
test: test-manifest-exec
$(MAKE) "TARGET=test" $(TARGETS)
# We want `test` to be the default target
!include ..\Header.mak
test-manifest-exec:
cd ..
$(MAKE) test-manifest
cd test
# test_i3633: validate certificates and binary metadata on executables
# TODO: Move this to buildtools
test_i3633:
cd $(ROOT)\src\test\test_i3633
$(MAKE) $(TARGET)
# ----------------------------------------------------------------------
!include ..\Target.mak
# ----------------------------------------------------------------------
# EOF
# ----------------------------------------------------------------------