-
Notifications
You must be signed in to change notification settings - Fork 0
/
MakefileLang.mak
85 lines (62 loc) · 5.23 KB
/
MakefileLang.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
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright © 1991-2022 Amebis
Clean ::
-if exist "output\locale\$(LANG)\wxstd.mo" del /f /q "output\locale\$(LANG)\wxstd.mo"
-if exist "output\locale\$(LANG)\ZRCola-zrcdb.mo" del /f /q "output\locale\$(LANG)\ZRCola-zrcdb.mo"
!IFDEF HAS_VERSION
######################################################################
# 2nd Phase
# - The version is known, do the rest.
######################################################################
######################################################################
# Localization
######################################################################
Localization :: \
"output\locale\$(LANG)" \
"output\locale\$(LANG)\wxstd.mo" \
"output\locale\$(LANG)\ZRCola-zrcdb.mo"
######################################################################
# Folder creation
######################################################################
"output\locale\$(LANG)" :
if not exist $@ md $@
"output\locale\$(LANG)" : "output\locale"
######################################################################
# File copy
######################################################################
"$(PUBLISH_DIR)\ZRColaInstall$(LANG_SUFFIX).exe" : "output\Win32.Release\ZRColaInstall$(LANG_SUFFIX).exe"
copy /y $** $@ > NUL
######################################################################
# Building
######################################################################
"output\locale\$(LANG)\wxstd.mo" : \
!IF EXISTS("$(WXWIN)\locale\$(LANG).po")
"$(WXWIN)\locale\$(LANG).po"
!ELSEIF EXISTS("$(WXWIN)\locale\$(LANG_BASE).po")
"$(WXWIN)\locale\$(LANG_BASE).po"
!ELSE
"$(WXWIN)\locale\wxstd.pot"
!ENDIF
msgfmt.exe --output-file=$@ --alignment=1 --endianness=little $**
"output\locale\$(LANG)\ZRCola-zrcdb.mo" : \
!IF EXISTS("output\locale\$(LANG)\ZRCola-zrcdb.po")
"output\locale\$(LANG)\ZRCola-zrcdb.po"
!ELSE
"output\locale\ZRCola-zrcdb.pot"
!ENDIF
msgfmt.exe --output-file=$@ --alignment=1 --endianness=little $**
"output\Win32.Release\ZRColaInstall$(LANG_SUFFIX).exe" ::
msbuild.exe $(MSBUILDFLAGS) "ZRColaInstall\ZRColaInstall.vcxproj" /t:Build /p:Configuration=Release;Language=$(LANG_SUFFIX) /p:Platform=Win32
!ENDIF
######################################################################
# Platform Specific
######################################################################
PLAT=Win32
PLAT_SUFFIX=-x86
!INCLUDE "MakefileLangPlat.mak"
PLAT=x64
PLAT_SUFFIX=-amd64
!INCLUDE "MakefileLangPlat.mak"
PLAT=ARM64
PLAT_SUFFIX=-arm64
!INCLUDE "MakefileLangPlat.mak"