forked from dkfans/keeperfx-stable
-
Notifications
You must be signed in to change notification settings - Fork 7
/
tool_rnctools.mk
96 lines (75 loc) · 2.75 KB
/
tool_rnctools.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_rnctools.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-rnctools deep-clean-rnctools
tools: $(RNC) $(DERNC)
clean-tools: clean-rnctools
deep-clean-tools: deep-clean-rnctools
ifneq (,$(wildcard tools/rnctools/src/dernc.c))
# If we have source code of this tool, compile it
$(RNC) $(DERNC): tools/rnctools/src/rnc.c tools/rnctools/src/dernc.c
make -C tools/rnctools
clean-rnctools:
make -C tools/rnctools clean
else ifneq (,$(findstring .tar.gz,$(RNCTOOLS_PACKAGE)))
# If we have tar gzip prebuild, download and extract it
$(RNC) $(DERNC): tools/rnctools/pkg/$(RNCTOOLS_PACKAGE)
-$(ECHO) 'Extracting package: $<'
$(MKDIR) "$(@D)"
cd "$(@D)"; \
tar -zxmUf "../../../$<"
-$(ECHO) 'Finished extracting: $<'
-$(ECHO) ' '
tools/rnctools/pkg/$(RNCTOOLS_PACKAGE):
-$(ECHO) 'Downloading package: $@'
$(MKDIR) "$(@D)"
curl -L -o "$@.dl" "$(RNCTOOLS_DOWNLOAD)"
tar -tzf "$@.dl" >/dev/null
$(MV) "$@.dl" "$@"
-$(ECHO) 'Finished downloading: $@'
-$(ECHO) ' '
clean-rnctools:
-$(RM) tools/rnctools/bin/*
deep-clean-rnctools:
-$(RM) tools/rnctools/pkg/$(RNCTOOLS_PACKAGE)
else ifneq (,$(findstring .zip,$(RNCTOOLS_PACKAGE)))
# If we have zip prebuild, download and extract it
$(RNC) $(DERNC): tools/rnctools/pkg/$(RNCTOOLS_PACKAGE)
-$(ECHO) 'Extracting package: $<'
$(MKDIR) "$(@D)"
cd "$(@D)"; \
unzip -DD -qo "../../../$<"
-$(ECHO) 'Finished extracting: $<'
-$(ECHO) ' '
tools/rnctools/pkg/$(RNCTOOLS_PACKAGE):
-$(ECHO) 'Downloading package: $@'
$(MKDIR) "$(@D)"
curl -L -o "$@.dl" "$(RNCTOOLS_DOWNLOAD)"
unzip -qt "$@.dl"
$(MV) "$@.dl" "$@"
-$(ECHO) 'Finished downloading: $@'
-$(ECHO) ' '
clean-rnctools:
-$(RM) tools/rnctools/bin/*
deep-clean-rnctools:
-$(RM) tools/rnctools/pkg/$(RNCTOOLS_PACKAGE)
else
$(error Cannot find rnctools tool source nor prebuild. Get package or source manually.)
endif
#******************************************************************************