mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-22 16:27:41 +00:00
This makes it possible to run `set NODELPHI=1`, `nmake build` and then only non-Delphi projects will be built.
37 lines
801 B
Makefile
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
|
|
# ----------------------------------------------------------------------
|