mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-05 23:27:40 +00:00
Fixes #4003. This addresses the majority of locations where we use the name "Keyman Desktop" in code. There will be some filenames and paths that do not change at this point -- particularly at a source level. For now, the focus is on the user interface changes. While making these changes, I also made the VERSION and MANIFEST resources more consistent.
52 lines
1 KiB
Makefile
52 lines
1 KiB
Makefile
#
|
|
# Keyman for Windows Makefile
|
|
#
|
|
|
|
TARGETS=kmshell kmconfig kmbrowserhost setup insthelp
|
|
RELEASE_TARGETS=help
|
|
CLEANS=inst clean-desktop
|
|
MANIFESTS=kmshell setup insthelp
|
|
|
|
!include ..\Header.mak
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
kmshell:
|
|
cd $(ROOT)\src\desktop\kmshell
|
|
$(MAKE) $(TARGET)
|
|
|
|
kmconfig:
|
|
cd $(ROOT)\src\desktop\kmconfig
|
|
$(MAKE) $(TARGET)
|
|
|
|
kmbrowserhost:
|
|
cd $(ROOT)\src\desktop\kmbrowserhost
|
|
$(MAKE) $(TARGET)
|
|
|
|
setup:
|
|
cd $(ROOT)\src\desktop\setup
|
|
$(MAKE) $(TARGET)
|
|
|
|
help:
|
|
cd $(ROOT)\src\desktop\help
|
|
$(MAKE) $(TARGET)
|
|
|
|
insthelp:
|
|
cd $(ROOT)\src\desktop\insthelp
|
|
$(MAKE) $(TARGET)
|
|
|
|
inst:
|
|
cd $(ROOT)\src\desktop\inst
|
|
$(MAKE) $(TARGET)
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
clean-desktop:
|
|
cd $(ROOT)\src\desktop
|
|
-del version.txt
|
|
|
|
!include ..\Target.mak
|
|
|
|
# ----------------------------------------------------------------------
|
|
# EOF
|
|
# ----------------------------------------------------------------------
|