-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8711 from keymanapp/feat/typescript-keymanweb-com…
…piler feat(developer): Rewrite of KeymanWeb compiler in Typescript
- Loading branch information
Showing
40 changed files
with
12,565 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# | ||
# Keyman Developer - kmc KMW Keyboard Compiler Makefile | ||
# | ||
|
||
!include ..\Defines.mak | ||
|
||
# We do configure here because parent Makefile calls this first; other | ||
# kmc and kmc-* makefiles don't do it | ||
build: configure .virtual | ||
$(GIT_BASH_FOR_KEYMAN) build.sh build | ||
|
||
configure: .virtual | ||
$(GIT_BASH_FOR_KEYMAN) build.sh configure | ||
|
||
clean: .virtual | ||
$(GIT_BASH_FOR_KEYMAN) build.sh clean | ||
|
||
test: .virtual | ||
$(GIT_BASH_FOR_KEYMAN) build.sh test | ||
|
||
# build.sh bundle must be run from shell as it requires a temp folder to be | ||
# passed in. See inst/download.in.mak for instantiation. | ||
|
||
publish: .virtual | ||
$(GIT_BASH_FOR_KEYMAN) build.sh publish | ||
|
||
signcode: | ||
@rem nothing to do | ||
|
||
wrap-symbols: | ||
@rem nothing to do | ||
|
||
test-manifest: | ||
@rem nothing to do | ||
|
||
install: | ||
@rem nothing to do | ||
|
||
!include ..\Target.mak |
Oops, something went wrong.