-
Notifications
You must be signed in to change notification settings - Fork 10
/
tool_dkillconv.mk
96 lines (75 loc) · 2.76 KB
/
tool_dkillconv.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
#******************************************************************************
# Free implementation of Bullfrog's Dungeon Keeper strategy game.
#******************************************************************************
# @file tool_dkillconv.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-dkillconv deep-clean-dkillconv
tools: $(DKILLTOLVL)
clean-tools: clean-dkillconv
deep-clean-tools: deep-clean-dkillconv
ifneq (,$(wildcard tools/dkillconv/src/dkillconv.cpp))
# If we have source code of this tool, compile it
$(DKILLTOLVL): tools/dkillconv/src/dkillconv.cpp
make -C tools/dkillconv
clean-dkillconv:
make -C tools/dkillconv clean
else ifneq (,$(findstring .tar.gz,$(DKILLCONV_PACKAGE)))
# If we have tar gzip prebuild, download and extract it
$(DKILLTOLVL): tools/dkillconv/pkg/$(DKILLCONV_PACKAGE)
-$(ECHO) 'Extracting package: $<'
$(MKDIR) "$(@D)"
cd "$(@D)"; \
tar -zxmUf "../../../$<"
-$(ECHO) 'Finished extracting: $<'
-$(ECHO) ' '
tools/dkillconv/pkg/$(DKILLCONV_PACKAGE):
-$(ECHO) 'Downloading package: $@'
$(MKDIR) "$(@D)"
curl -L -o "[email protected]" "$(DKILLCONV_DOWNLOAD)"
tar -tzf "[email protected]" >/dev/null
$(MV) "[email protected]" "$@"
-$(ECHO) 'Finished downloading: $@'
-$(ECHO) ' '
clean-dkillconv:
-$(RM) tools/dkillconv/bin/*
deep-clean-dkillconv:
-$(RM) tools/dkillconv/pkg/$(DKILLCONV_PACKAGE)
else ifneq (,$(findstring .zip,$(DKILLCONV_PACKAGE)))
# If we have zip prebuild, download and extract it
$(DKILLTOLVL): tools/dkillconv/pkg/$(DKILLCONV_PACKAGE)
-$(ECHO) 'Extracting package: $<'
$(MKDIR) "$(@D)"
cd "$(@D)"; \
unzip -DD -qo "../../../$<"
-$(ECHO) 'Finished extracting: $<'
-$(ECHO) ' '
tools/dkillconv/pkg/$(DKILLCONV_PACKAGE):
-$(ECHO) 'Downloading package: $@'
$(MKDIR) "$(@D)"
curl -L -o "[email protected]" "$(DKILLCONV_DOWNLOAD)"
unzip -qt "[email protected]"
$(MV) "[email protected]" "$@"
-$(ECHO) 'Finished downloading: $@'
-$(ECHO) ' '
clean-dkillconv:
-$(RM) tools/dkillconv/bin/*
deep-clean-dkillconv:
-$(RM) tools/dkillconv/pkg/$(DKILLCONV_PACKAGE)
else
$(error Cannot find dkillconv tool source nor prebuild. Get package or source manually.)
endif
#******************************************************************************