mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-05 07:07:41 +00:00
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
#
|
|
# Keymanmc Makefile
|
|
#
|
|
|
|
!include ..\..\Defines.mak
|
|
|
|
build:
|
|
mc -U keymanmc.mc
|
|
rc keymanmc.rc
|
|
link -dll -noentry keymanmc.res
|
|
$(COPY) keymanmc.dll $(PROGRAM)\engine
|
|
|
|
clean: def-clean
|
|
-del keymanmc.rc
|
|
-del keymanmc.h
|
|
-del keymanmc.dll
|
|
-del keymanmc.res
|
|
-del MSG00409.bin
|
|
|
|
signcode:
|
|
$(SIGNCODE) /d "Keyman Engine" $(PROGRAM)\engine\keymanmc.dll
|
|
|
|
wrap-symbols:
|
|
rem no symbols
|
|
|
|
backup:
|
|
$(WZZIP) $(BUILD)\engine\keymanmc.zip $(BACKUPDEFAULTS) keymanmc.dll
|
|
|
|
install:
|
|
$(COPY) $(PROGRAM)\engine\keymanmc.dll "$(INSTALLPATH_KEYMANENGINE)\keymanmc.dll"
|
|
reg add HKLM\SYSTEM\CurrentControlSet\services\eventlog\Application\Keyman /v CategoryCount /t REG_DWORD /d 1 /f
|
|
reg add HKLM\SYSTEM\CurrentControlSet\services\eventlog\Application\Keyman /v CategoryMessageFile /t REG_SZ /d "$(INSTALLPATH_KEYMANENGINE)\keymanmc.dll" /f
|
|
reg add HKLM\SYSTEM\CurrentControlSet\services\eventlog\Application\Keyman /v EventMessageFile /t REG_SZ /d "$(INSTALLPATH_KEYMANENGINE)\keymanmc.dll" /f
|
|
reg add HKLM\SYSTEM\CurrentControlSet\services\eventlog\Application\Keyman /v TypesSupported /t REG_DWORD /d 7 /f
|
|
|
|
!include ..\..\Target.mak
|