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