mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 01:45:32 +00:00
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
#
|
|
# Keyman Makefile
|
|
#
|
|
|
|
!include ..\..\Defines.mak
|
|
|
|
build: version.res manifest.res keymanmenuitem.res icons.res osktoolbar.res dirs
|
|
rc langswitch\langswitchmanager.rc
|
|
$(DCC32) keyman.dpr
|
|
$(TDS2DBG) keyman.exe
|
|
$(MAKEJCLDBG) keyman.map
|
|
$(COPY) keyman.exe $(PROGRAM)\engine
|
|
if exist keyman.dbg $(COPY) keyman.dbg $(DEBUGPATH)\engine
|
|
|
|
clean: def-clean
|
|
|
|
signcode:
|
|
$(SIGNCODE) /d "Keyman Engine" $(PROGRAM)\engine\keyman.exe
|
|
|
|
backup:
|
|
$(WZZIP) $(BUILD)\engine\keyman.zip $(BACKUPDEFAULTS) keyman.exe
|
|
|
|
keymanmenuitem.res:
|
|
rc keymanmenuitem.rc
|
|
|
|
icons.res:
|
|
rc icons.rc
|
|
|
|
osktoolbar.res:
|
|
rc osktoolbar.rc
|
|
|
|
debug-manifest:
|
|
-del manifest.res
|
|
copy manifest.xml std-manifest.xml
|
|
copy debug-manifest.xml manifest.xml
|
|
$(MAKE) manifest.res
|
|
copy std-manifest.xml manifest.xml
|
|
|
|
install:
|
|
$(COPY) $(PROGRAM)\engine\keyman.exe "$(INSTALLPATH_KEYMANENGINE)"
|
|
$(COPY) keyman.rsm "$(INSTALLPATH_KEYMANENGINE)"
|
|
|
|
test-uiaccess:
|
|
grep -c "uiAccess=\"true\"" manifest.xml
|
|
|
|
test-manifest:
|
|
# test that (a) linked manifest exists and correct, and (b) has uiAccess=true
|
|
$(MT) -nologo -inputresource:$(PROGRAM)\engine\keyman.exe -validate_manifest
|
|
$(MT) -nologo -inputresource:$(PROGRAM)\engine\keyman.exe -out:temp.manifest
|
|
grep -c "uiAccess=\"true\"" temp.manifest
|
|
-del temp.manifest
|
|
|
|
!include ..\..\Target.mak
|