spiegel-keyman/windows/src/support/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

34 lines
703 B
Makefile

#
# Support Makefile
#
!ifdef NODELPHI
TARGETS=etl2log
!else
TARGETS=oskbulkrenderer etl2log
!endif
CLEANS=clean-support
!include ..\Header.mak
# ----------------------------------------------------------------------
oskbulkrenderer: .virtual
cd $(ROOT)\src\support\oskbulkrenderer
$(MAKE) $(TARGET)
etl2log: .virtual
cd $(ROOT)\src\support\etl2log
$(MAKE) $(TARGET)
# ----------------------------------------------------------------------
clean-support:
cd $(ROOT)\src\support
-del version.txt
!include ..\Target.mak
# ----------------------------------------------------------------------
# EOF
# ----------------------------------------------------------------------