mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-27 01:57:41 +00:00
* Keyman for Windows 10.0 Open Source * Squashed 'windows/src/ext/jedi/jedi/' content from commit f444ad2 git-subtree-dir: windows/src/ext/jedi/jedi git-subtree-split: f444ad2da4693851e523f1ea6bd541f701904c24 * Squashed 'windows/src/ext/jedi/jcl/' content from commit d63d3c9fd git-subtree-dir: windows/src/ext/jedi/jcl git-subtree-split: d63d3c9fd9ff84efdd8159084ec6a60313644243 * Squashed 'windows/src/ext/jedi/jvcl/' content from commit bee19f3b4 git-subtree-dir: windows/src/ext/jedi/jvcl git-subtree-split: bee19f3b46909fde2fa92c06cd2706f41d99f6c3 * Add required .res files * Add required .res files * Add docbook files (forced) * Add required libxslt * Add required jedi files * Add installation files * Tweak .gitignore for open * CI * Remove KMW from Developer source (#122) * Remove KMW from Developer source (copies during build) * Remove KMW from Developer source (copies during build) * Remove KMW from Developer source (copies during build) * Fixup release build and copy license, readme from kmw during build * Remove obsolete build help documentation * Keyman Engine 10 on Windows regression for shift states (#129) * Improve #128 -- cleaner debug messages * Fixes #127, shift state now resets correctly; and more work for #128 * Fixes #130 (#131)
60 lines
1.3 KiB
Makefile
60 lines
1.3 KiB
Makefile
#
|
|
# Keyman Engine Makefile
|
|
#
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
TARGETS=keyman32 kmcomapi keyman tsysinfox64 tsysinfo keyman64 keymanx64 mcompile inst kmtip
|
|
MANIFESTS=keyman tsysinfo tsysinfox64 keymanx64 mcompile
|
|
|
|
!include ..\Header.mak
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
keyman:
|
|
cd $(ROOT)\src\engine\keyman
|
|
$(MAKE) $(TARGET)
|
|
|
|
kmcomapi:
|
|
cd $(ROOT)\src\engine\kmcomapi
|
|
$(MAKE) $(TARGET)
|
|
|
|
keyman32:
|
|
cd $(ROOT)\src\engine\keyman32
|
|
$(MAKE) $(TARGET)
|
|
|
|
tsysinfox64:
|
|
cd $(ROOT)\src\engine\tsysinfox64
|
|
$(MAKE) $(TARGET)
|
|
|
|
tsysinfo: tsysinfox64
|
|
cd $(ROOT)\src\engine\tsysinfo
|
|
$(MAKE) $(TARGET)
|
|
|
|
keymanx64:
|
|
cd $(ROOT)\src\engine\keymanx64
|
|
$(MAKE) $(TARGET)
|
|
|
|
keyman64:
|
|
cd $(ROOT)\src\engine\keyman64
|
|
$(MAKE) $(TARGET)
|
|
|
|
mcompile:
|
|
cd $(ROOT)\src\engine\mcompile
|
|
$(MAKE) $(TARGET)
|
|
|
|
kmtip:
|
|
cd $(ROOT)\src\engine\kmtip
|
|
$(MAKE) $(TARGET)
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
inst:
|
|
cd $(ROOT)\src\engine\inst
|
|
$(MAKE) $(TARGET)
|
|
|
|
!include ..\Target.mak
|
|
|
|
# ----------------------------------------------------------------------
|
|
# EOF
|
|
# ----------------------------------------------------------------------
|