spiegel-keyman/windows/src/desktop/Makefile
Marc Durdin 9e46b555d9 fix(windows): Rename to Keyman
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.
2020-12-02 09:56:14 +11:00

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
# ----------------------------------------------------------------------