-
Notifications
You must be signed in to change notification settings - Fork 87
/
Makefile
180 lines (149 loc) · 9.86 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# Copyright 2017 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# All of the following must be installed on your system. Example commands:
# $ sudo gem install bundle rake
# $ sudo apt install cmake make maven nodejs
COMPOSER=composer
BUNDLE=bundle
CMAKE=cmake
MAKE=make
MVN=mvn
NPM=npm
RAKE=rake
GO=go
PHPUNIT=./vendor/bin/phpunit
PYTHON=python
FLUTTER=flutter
DOTNET=dotnet
# /usr/bin/swift is under macOS System Integrity Protection, which
# filters out environment variables like DYLD_LIBRARY_PATH which let
# it discover the C++ libmyanmartools.dylib.
#
# /Applications/Xcode.app/.../XcodeDefault.toolchain/usr/bin/swift is
# *not* under SIP, so use that instead of /usr/bin/swift.
SWIFT=$(shell xcrun -f swift)
training/target: $(wildcard training/src/**/*)
$(MVN) -f training/pom.xml -q compile
zawgyiUnicodeModel.dat: training/target
TMP=`mktemp`; $(MVN) -f training/pom.xml -q -e exec:java -Dexec.args="'$(CORPUS)'" > $$TMP; if [ $$? -ne 0 ]; then cat $$TMP; rm $$TMP; exit 1; else mv $$TMP training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat; exit 0; fi
$(MVN) -f training/pom.xml -q process-resources
compatibility.tsv: zawgyiUnicodeModel.dat training/target
TMP=`mktemp`; $(MVN) -f training/pom.xml -q -e exec:java -Dexec.mainClass=com.google.myanmartools.GenerateCompatibilityTSV > $$TMP; if [ $$? -ne 0 ]; then cat $$TMP; rm $$TMP; exit 1; else mv $$TMP training/src/main/resources/com/google/myanmartools/compatibility.tsv; exit 0; fi
$(MVN) -f training/pom.xml -q process-resources
testData.tsv: training/target
TMP=`mktemp`; $(MVN) -f training/pom.xml -q -e exec:java -Dexec.mainClass=com.google.myanmartools.GenerateTestDataTSV -Dexec.args="'$(CORPUS)'" > $$TMP; if [ $$? -ne 0 ]; then cat $$TMP; rm $$TMP; exit 1; else mv $$TMP training/src/test/resources/com/google/myanmartools/testData.tsv; exit 0; fi
$(MVN) -f training/pom.xml -q process-resources
copy-resources:
cp training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat clients/java/src/main/resources/com/google/myanmartools
cp training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat clients/cpp/resources
cp training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat clients/js/resources
cp training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat clients/ruby/lib/myanmar-tools/resources
cp training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat clients/php/resources
cp training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat clients/go/resources
cp training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat clients/python/src/myanmartools/resources
cp training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat clients/dart/resources
cp training/src/main/resources/com/google/myanmartools/zawgyiUnicodeModel.dat clients/c#/Resources
cp training/src/main/resources/com/google/myanmartools/compatibility.tsv clients/java/src/test/resources/com/google/myanmartools
cp training/src/main/resources/com/google/myanmartools/compatibility.tsv clients/cpp/resources
cp training/src/main/resources/com/google/myanmartools/compatibility.tsv clients/js/resources
cp training/src/main/resources/com/google/myanmartools/compatibility.tsv clients/ruby/lib/myanmar-tools/resources
cp training/src/main/resources/com/google/myanmartools/compatibility.tsv clients/php/resources
cp training/src/main/resources/com/google/myanmartools/compatibility.tsv clients/go/resources
cp training/src/main/resources/com/google/myanmartools/compatibility.tsv clients/python/src/myanmartools/resources
cp training/src/main/resources/com/google/myanmartools/compatibility.tsv clients/dart/resources
cp training/src/main/resources/com/google/myanmartools/compatibility.tsv clients/c#/Resources
cp genconvert/input/mmgov_zawgyi_src.txt clients/java/src/test/resources/com/google/myanmartools
cp genconvert/input/mmgov_zawgyi_src.txt clients/js/resources
cp genconvert/input/mmgov_zawgyi_src.txt clients/dart/resources
cp genconvert/input/mmgov_zawgyi_src.txt clients/c#/Resources
cp genconvert/input/udhr_mya_unicode_src.txt clients/js/resources
cp genconvert/input/udhr_mya_unicode_src.txt clients/java/src/test/resources/com/google/myanmartools
cp genconvert/input/udhr_mya_unicode_src.txt clients/dart/resources
cp genconvert/input/udhr_mya_unicode_src.txt clients/c#/Resources
cp genconvert/output/mmgov_unicode_out.txt clients/java/src/test/resources/com/google/myanmartools
cp genconvert/output/mmgov_unicode_out.txt clients/js/resources
cp genconvert/output/mmgov_unicode_out.txt clients/dart/resources
cp genconvert/output/mmgov_unicode_out.txt clients/c#/Resources
cp genconvert/output/udhr_mya_zawgyi_out.txt clients/java/src/test/resources/com/google/myanmartools
cp genconvert/output/udhr_mya_zawgyi_out.txt clients/js/resources
cp genconvert/output/udhr_mya_zawgyi_out.txt clients/dart/resources
cp genconvert/output/udhr_mya_zawgyi_out.txt clients/c#/Resources
train: zawgyiUnicodeModel.dat compatibility.tsv testData.tsv copy-resources
transcompile-target: $(wildcard genconvert/src/**/*)
$(MVN) -f genconvert/pom.xml compile
transcompile-norm: transcompile-target
TMP=`mktemp`; $(MVN) -f genconvert/pom.xml -q -e exec:java -Dexec.mainClass=com.google.myanmartools.CompileTranslit -Dexec.args="genconvert/input/my_normalize_zawgyi_transliteration_rules.txt $$TMP ZNorm clients/java/src/main/java/com/google/myanmartools/TransliterateZNorm.java"; if [ $$? -ne 0 ]; then cat $$TMP; rm $$TMP; exit 1; else mv $$TMP clients/js/resources/ZNorm.js; exit 0; fi
transcompile-Z2U: transcompile-target
TMP=`mktemp`; $(MVN) -f genconvert/pom.xml -q -e exec:java -Dexec.mainClass=com.google.myanmartools.CompileTranslit -Dexec.args="genconvert/input/my-t-my-s0-zawgyi.txt $$TMP Z2U clients/java/src/main/java/com/google/myanmartools/TransliterateZ2U.java"; if [ $$? -ne 0 ]; then cat $$TMP; rm $$TMP; exit 1; else mv $$TMP clients/js/resources/Z2U.js; exit 0; fi
transcompile-U2Z: transcompile-target
TMP=`mktemp`; $(MVN) -f genconvert/pom.xml -q -e exec:java -Dexec.mainClass=com.google.myanmartools.CompileTranslit -Dexec.args="genconvert/input/my-t-my-d0-zawgyi.txt $$TMP U2Z clients/java/src/main/java/com/google/myanmartools/TransliterateU2Z.java"; if [ $$? -ne 0 ]; then cat $$TMP; rm $$TMP; exit 1; else mv $$TMP clients/js/resources/U2Z.js; exit 0; fi
transcompile: transcompile-norm transcompile-Z2U transcompile-U2Z
transliterate-compatibility: compatU2Z compatZ2U
compatU2Z:
$(MVN) -f genconvert/pom.xml -q -e exec:java -Dexec.mainClass=com.google.myanmartools.TransliterateFile -Dexec.args="genconvert/input/my-t-my-d0-zawgyi.txt genconvert/input/udhr_mya_unicode_src.txt genconvert/output/udhr_mya_zawgyi_out.txt"
compatZ2U:
$(MVN) -f genconvert/pom.xml -q -e exec:java -Dexec.mainClass=com.google.myanmartools.TransliterateFile -Dexec.args="genconvert/input/my-t-my-s0-zawgyi.txt genconvert/input/mmgov_zawgyi_src.txt genconvert/output/mmgov_unicode_out.txt"
clients: $(wildcard clients/**/*)
client-cpp: $(wildcard clients/cpp/**/*)
cd clients/cpp && $(CMAKE) CMakeLists.txt
cd clients/cpp && $(MAKE) all
client-js: $(wildcard clients/js/**/*)
cd clients/js && $(NPM) install
client-ruby: $(wildcard clients/ruby/**/*)
cd clients/ruby && $(BUNDLE) install --path vendor/bundle
client-php: $(wildcard clients/php/**/*)
$(COMPOSER) install
client-go: $(wildcard clients/go/**/*)
$(GO) get -u github.com/go-bindata/go-bindata/...
cd clients/go
$(GO) generate
client-python: $(wildcard clients/python/**/*)
cd clients/python && $(PYTHON) setup.py install
client-dart:$(wildcard clients/dart/**/*)
cd clients/dart && $(FLUTTER) pub get
client-csharp:$(wildcard clients/c#/**/*)
cd clients/c# && $(DOTNET) restore
# Until Swift 5.3 and SE-0272 are released, the Swift Package Manager
# does not fully support binary library dependencies.
#
# In particular, libmyanmartools.dylib is not copied into the final
# .xctest bundle, so the test fails to run when it can't find the
# dylib:
#
# The bundle “MyanmarToolsPackageTests.xctest” couldn’t be loaded
# because it is damaged or missing necessary resources. Try
# reinstalling the bundle.
# xctest (dlopen_preflight(myanmar-tools/clients/swift/.build/x86_64-apple-macosx/debug/MyanmarToolsPackageTests.xctest/Contents/MacOS/MyanmarToolsPackageTests): Library not loaded: @rpath/libmyanmartools.dylib
# Referenced from: myanmar-tools/clients/swift/.build/x86_64-apple-macosx/debug/MyanmarToolsPackageTests.xctest/Contents/MacOS/MyanmarToolsPackageTests
# Reason: image not found)
#
# Work around this by setting DYLD_LIBRARY_PATH in the environment
# when running the tests.
#
# Clients can use `install_name_tool` to adjust the search paths
# as needed.
client-swift: client-cpp $(wildcard clients/swift/**/*)
$(SWIFT) build -Xlinker -L"$(CURDIR)"/clients/cpp --package-path clients/swift
client-swift-test: client-swift
DYLD_LIBRARY_PATH="$(CURDIR)"/clients/cpp $(SWIFT) test -Xlinker -L"$(CURDIR)"/clients/cpp --package-path clients/swift
test: clients client-cpp client-js client-ruby client-php client-go client-python client-swift client-swift-test client-dart client-csharp
cd clients/cpp && $(MAKE) test
cd clients/java && $(MVN) test
cd clients/js && $(NPM) test
cd clients/ruby && $(RAKE) test
cd clients/go && $(GO) test
$(PHPUNIT) --configuration clients/php/phpunit.xml
cd clients/python && $(PYTHON) -m unittest
cd clients/dart && $(FLUTTER) test
cd clients/c# && $(DOTNET) test