-
Notifications
You must be signed in to change notification settings - Fork 10
/
tool_po2ngdat.mk
112 lines (89 loc) · 3.27 KB
/
tool_po2ngdat.mk
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
#******************************************************************************
# Free implementation of Bullfrog's Dungeon Keeper strategy game.
#******************************************************************************
# @file tool_po2ngdat.mk
# A script used by GNU Make to recompile the project.
# @par Purpose:
# Defines make rules for tools needed to build KeeperFX.
# Most tools can either by compiled from source or downloaded.
# @par Comment:
# None.
# @author Tomasz Lis
# @date 25 Jan 2009 - 02 Jul 2011
# @par Copying and copyrights:
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
#******************************************************************************
.PHONY: clean-po2ngdat deep-clean-po2ngdat
tools: $(POTONGDAT)
clean-tools: clean-po2ngdat
deep-clean-tools: deep-clean-po2ngdat
ifneq (,$(wildcard tools/po2ngdat/src/po2ngdat.cpp))
# If we have source code of this tool, compile it
$(POTONGDAT): tools/po2ngdat/src/po2ngdat.cpp
make -C tools/po2ngdat
clean-po2ngdat:
make -C tools/po2ngdat clean
else ifneq (,$(findstring .tar.gz,$(POTONGDAT_PACKAGE)))
# If we have tar gzip prebuild, download and extract it
$(POTONGDAT): tools/po2ngdat/pkg/$(POTONGDAT_PACKAGE)
-$(ECHO) 'Extracting package: $<'
$(MKDIR) "$(@D)"
cd "$(@D)"; \
tar -zxmUf "../../../$<" --exclude="*char_encoding_*.txt"
-$(ECHO) 'Finished extracting: $<'
-$(ECHO) ' '
tools/po2ngdat/res/%.txt: tools/po2ngdat/pkg/$(POTONGDAT_PACKAGE)
-$(ECHO) 'Extracting encoding table: $@'
$(MKDIR) "$(@D)"
cd "$(@D)"; \
tar -zxmUf "../../../$<" --wildcards "*char_encoding_*.txt"
-$(ECHO) 'Finished extracting: $@'
-$(ECHO) ' '
tools/po2ngdat/pkg/$(POTONGDAT_PACKAGE):
-$(ECHO) 'Downloading package: $@'
$(MKDIR) "$(@D)"
curl -L -o "[email protected]" "$(POTONGDAT_DOWNLOAD)"
tar -tzf "[email protected]" >/dev/null
$(MV) "[email protected]" "$@"
-$(ECHO) 'Finished downloading: $@'
-$(ECHO) ' '
clean-po2ngdat:
-$(RM) tools/po2ngdat/bin/*
deep-clean-po2ngdat:
-$(RM) tools/po2ngdat/pkg/$(POTONGDAT_PACKAGE)
else ifneq (,$(findstring .zip,$(POTONGDAT_PACKAGE)))
# If we have zip prebuild, download and extract it
$(POTONGDAT): tools/po2ngdat/pkg/$(POTONGDAT_PACKAGE)
-$(ECHO) 'Extracting package: $<'
$(MKDIR) "$(@D)"
cd "$(@D)"; \
unzip -DD -qo "../../../$<" -x "char_encoding_*.txt"
-$(ECHO) 'Finished extracting: $<'
-$(ECHO) ' '
tools/po2ngdat/res/%.txt: tools/po2ngdat/pkg/$(POTONGDAT_PACKAGE)
-$(ECHO) 'Extracting encoding table: $@'
$(MKDIR) "$(@D)"
cd "$(@D)"; \
unzip -DD -qo "../../../$<" "char_encoding_*.txt"
-$(ECHO) 'Finished extracting: $@'
-$(ECHO) ' '
tools/po2ngdat/pkg/$(POTONGDAT_PACKAGE):
-$(ECHO) 'Downloading package: $@'
$(MKDIR) "$(@D)"
curl -L -o "[email protected]" "$(POTONGDAT_DOWNLOAD)"
unzip -qt "[email protected]"
$(MV) "[email protected]" "$@"
-$(ECHO) 'Finished downloading: $@'
-$(ECHO) ' '
clean-po2ngdat:
-$(RM) tools/po2ngdat/bin/*
deep-clean-po2ngdat:
-$(RM) tools/po2ngdat/pkg/$(POTONGDAT_PACKAGE)
else
$(error Cannot find po2ngdat tool source nor prebuild. Get package or source manually.)
endif
#******************************************************************************