-
Notifications
You must be signed in to change notification settings - Fork 1
/
all.mak
92 lines (91 loc) · 1.6 KB
/
all.mak
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
all:
nmake /f hts.mak
cd libopenjtalk
cd text2mecab
nmake /f Makefile.mak
cd ..
rem cd mecab
rem nmake /f Makefile.mak
rem cd ..
cd mecab2njd
nmake /f Makefile.mak
cd ..
cd njd
nmake /f Makefile.mak
cd ..
cd njd_set_pronunciation
nmake /f Makefile.mak
cd ..
cd njd_set_digit
nmake /f Makefile.mak
cd ..
cd njd_set_accent_phrase
nmake /f Makefile.mak
cd ..
cd njd_set_accent_type
nmake /f Makefile.mak
cd ..
cd njd_set_unvoiced_vowel
nmake /f Makefile.mak
cd ..
cd njd_set_long_vowel
nmake /f Makefile.mak
cd ..
cd njd2jpcommon
nmake /f Makefile.mak
cd ..
cd ..
cd jpcommon
copy ..\libopenjtalk\jpcommon\*.c .
copy ..\libopenjtalk\jpcommon\*.h .
copy ..\libopenjtalk\jpcommon\Makefile.mak .
patch jpcommon_label.c jpcommon_label.patch
nmake /f Makefile.mak
cd ..
cd lib
nmake /f Makefile.mak
cd ..
copy lib\libopenjtalk.dll .
clean:
nmake /f hts.mak clean
cd libopenjtalk
cd text2mecab
nmake /f Makefile.mak clean
cd ..
cd mecab
nmake /f Makefile.mak clean
cd ..
cd mecab2njd
nmake /f Makefile.mak clean
cd ..
cd njd
nmake /f Makefile.mak clean
cd ..
cd njd_set_pronunciation
nmake /f Makefile.mak clean
cd ..
cd njd_set_digit
nmake /f Makefile.mak clean
cd ..
cd njd_set_accent_phrase
nmake /f Makefile.mak clean
cd ..
cd njd_set_accent_type
nmake /f Makefile.mak clean
cd ..
cd njd_set_unvoiced_vowel
nmake /f Makefile.mak clean
cd ..
cd njd_set_long_vowel
nmake /f Makefile.mak clean
cd ..
cd njd2jpcommon
nmake /f Makefile.mak clean
cd ..
cd ..
cd jpcommon
del /Q *.c *.h *.orig *.obj *.lib *.mak
cd ..
cd lib
nmake /f Makefile.mak clean
cd ..