Mercurial > hg > openttd
annotate Makefile.bundle.in @ 12784:94a4ff41cdcb draft
(svn r17264) -Fix (r17261): bundle making for OSX failed
author | rubidium <rubidium@openttd.org> |
---|---|
date | Sat, 22 Aug 2009 19:04:20 +0000 |
parents | 8796923314d6 |
children | b72fd8020fa5 |
rev | line source |
---|---|
12778
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
12719
diff
changeset
|
1 # $Id$ |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
12719
diff
changeset
|
2 |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
12719
diff
changeset
|
3 # This file is part of OpenTTD. |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
12719
diff
changeset
|
4 # OpenTTD 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, version 2. |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
12719
diff
changeset
|
5 # OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
12719
diff
changeset
|
6 # See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>. |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
12719
diff
changeset
|
7 |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
8 # |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
9 # Creation of bundles |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
10 # |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
11 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
12 # The revision is needed for the bundle name and creating an OSX application bundle. |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
13 ifdef REVISION |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
14 REV := $(REVISION) |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
15 else |
10086
b4b76a117166
(svn r14262) -Feature [Makefile]: Let Makefile.bundle.in also use the new findversion.sh
matthijs <matthijs@openttd.org>
parents:
10057
diff
changeset
|
16 # Detect the revision |
b4b76a117166
(svn r14262) -Feature [Makefile]: Let Makefile.bundle.in also use the new findversion.sh
matthijs <matthijs@openttd.org>
parents:
10057
diff
changeset
|
17 VERSIONS := $(shell AWK="$(AWK)" "$(ROOT_DIR)/findversion.sh") |
10091
f1270dbc1913
(svn r14272) -Fix [Makefile]: Always pass an explicit delimiter to the "cut" command, in
matthijs <matthijs@openttd.org>
parents:
10086
diff
changeset
|
18 REV := $(shell echo "$(VERSIONS)" | cut -f 1 -d' ') |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
19 endif |
10086
b4b76a117166
(svn r14262) -Feature [Makefile]: Let Makefile.bundle.in also use the new findversion.sh
matthijs <matthijs@openttd.org>
parents:
10057
diff
changeset
|
20 |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
21 # Make sure we have something in REV |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
22 ifeq ($(REV),) |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
23 REV := norev000 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
24 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
25 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
26 ifndef BUNDLE_NAME |
10166
a48a71c1d149
(svn r14358) -Change: make the default bundle name similar to the name of the current compile farm instead of the former compile farm.
rubidium <rubidium@openttd.org>
parents:
10091
diff
changeset
|
27 BUNDLE_NAME = openttd-custom-$(REV)-$(OS) |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
28 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
29 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
30 # An OSX application bundle needs the data files, lang files and openttd executable in a different location. |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
31 ifdef OSXAPP |
12782
8796923314d6
(svn r17261) -Fix (r17214): don't forget to package the compatability wrapper scripts
rubidium <rubidium@openttd.org>
parents:
12778
diff
changeset
|
32 AI_DIR = $(BUNDLE_DIR)/$(OSXAPP)/Contents/Resources/ai |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
33 DATA_DIR = $(BUNDLE_DIR)/$(OSXAPP)/Contents/Resources/data |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
34 LANG_DIR = $(BUNDLE_DIR)/$(OSXAPP)/Contents/Resources/lang |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
35 TTD_DIR = $(BUNDLE_DIR)/$(OSXAPP)/Contents/MacOS |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
36 else |
12782
8796923314d6
(svn r17261) -Fix (r17214): don't forget to package the compatability wrapper scripts
rubidium <rubidium@openttd.org>
parents:
12778
diff
changeset
|
37 AI_DIR = $(BUNDLE_DIR)/ai |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
38 DATA_DIR = $(BUNDLE_DIR)/data |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
39 LANG_DIR = $(BUNDLE_DIR)/lang |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
40 TTD_DIR = $(BUNDLE_DIR) |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
41 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
42 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
43 bundle: all |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
44 @echo '[BUNDLE] Constructing bundle' |
10220
d68752ed1bcd
(svn r14443) -Change: Unify the delimiters used in config* and make*
skidd13 <skidd13@openttd.org>
parents:
10166
diff
changeset
|
45 $(Q)rm -rf "$(BUNDLE_DIR)" |
d68752ed1bcd
(svn r14443) -Change: Unify the delimiters used in config* and make*
skidd13 <skidd13@openttd.org>
parents:
10166
diff
changeset
|
46 $(Q)mkdir -p "$(BUNDLE_DIR)" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
47 $(Q)mkdir -p "$(BUNDLE_DIR)/docs" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
48 $(Q)mkdir -p "$(BUNDLE_DIR)/media" |
10329
e7a823b7c9c1
(svn r14580) -Fix [FS#2404]: scripts directory not being copied into bundles.
rubidium <rubidium@openttd.org>
parents:
10247
diff
changeset
|
49 $(Q)mkdir -p "$(BUNDLE_DIR)/scripts" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
50 $(Q)mkdir -p "$(TTD_DIR)" |
12784
94a4ff41cdcb
(svn r17264) -Fix (r17261): bundle making for OSX failed
rubidium <rubidium@openttd.org>
parents:
12782
diff
changeset
|
51 $(Q)mkdir -p "$(AI_DIR)" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
52 $(Q)mkdir -p "$(DATA_DIR)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
53 $(Q)mkdir -p "$(LANG_DIR)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
54 ifdef OSXAPP |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
55 $(Q)mkdir -p "$(BUNDLE_DIR)/$(OSXAPP)/Contents/Resources" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
56 $(Q)echo "APPL????" > "$(BUNDLE_DIR)/$(OSXAPP)/Contents/PkgInfo" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
57 $(Q)cp "$(ROOT_DIR)/os/macosx/openttd.icns" "$(BUNDLE_DIR)/$(OSXAPP)/Contents/Resources/openttd.icns" |
10220
d68752ed1bcd
(svn r14443) -Change: Unify the delimiters used in config* and make*
skidd13 <skidd13@openttd.org>
parents:
10166
diff
changeset
|
58 $(Q)$(ROOT_DIR)/os/macosx/plistgen.sh "$(BUNDLE_DIR)/$(OSXAPP)" "$(REV)" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
59 $(Q)cp "$(ROOT_DIR)/docs/OSX_install_instructions.txt" "$(BUNDLE_DIR)/docs/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
60 $(Q)cp "$(ROOT_DIR)/os/macosx/splash.png" "$(DATA_DIR)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
61 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
62 $(Q)cp "$(BIN_DIR)/$(TTD)" "$(TTD_DIR)/" |
12782
8796923314d6
(svn r17261) -Fix (r17214): don't forget to package the compatability wrapper scripts
rubidium <rubidium@openttd.org>
parents:
12778
diff
changeset
|
63 $(Q)cp "$(BIN_DIR)/ai/"compat_*.nut "$(AI_DIR)/" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
64 $(Q)cp "$(BIN_DIR)/data/"*.grf "$(DATA_DIR)/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
65 $(Q)cp "$(BIN_DIR)/data/"*.obg "$(DATA_DIR)/" |
12684
b056ac99f230
(svn r17139) -Change: add the concept of sound sets
rubidium <rubidium@openttd.org>
parents:
11269
diff
changeset
|
66 $(Q)cp "$(BIN_DIR)/data/"*.obs "$(DATA_DIR)/" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
67 $(Q)cp "$(BIN_DIR)/data/opntitle.dat" "$(DATA_DIR)/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
68 $(Q)cp "$(BIN_DIR)/lang/"*.lng "$(LANG_DIR)/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
69 $(Q)cp "$(ROOT_DIR)/readme.txt" "$(BUNDLE_DIR)/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
70 $(Q)cp "$(ROOT_DIR)/COPYING" "$(BUNDLE_DIR)/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
71 $(Q)cp "$(ROOT_DIR)/known-bugs.txt" "$(BUNDLE_DIR)/" |
10242
d1d45ed43230
(svn r14472) -Fix: add docs/obg_format.txt in bundles too
truebrain <truebrain@openttd.org>
parents:
10220
diff
changeset
|
72 $(Q)cp "$(ROOT_DIR)/docs/obg_format.txt" "$(BUNDLE_DIR)/docs/" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
73 $(Q)cp "$(ROOT_DIR)/docs/multiplayer.txt" "$(BUNDLE_DIR)/docs/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
74 $(Q)cp "$(ROOT_DIR)/docs/32bpp.txt" "$(BUNDLE_DIR)/docs/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
75 $(Q)cp "$(ROOT_DIR)/changelog.txt" "$(BUNDLE_DIR)/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
76 ifdef MAN_DIR |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
77 $(Q)mkdir -p "$(BUNDLE_DIR)/man/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
78 $(Q)cp "$(ROOT_DIR)/docs/openttd.6" "$(BUNDLE_DIR)/man/" |
10446
b90baa371bc6
(svn r14701) -Change: Debian's lintian complains about not using the best compression for compressing the man-page.
rubidium <rubidium@openttd.org>
parents:
10385
diff
changeset
|
79 $(Q)gzip -9 "$(BUNDLE_DIR)/man/openttd.6" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
80 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
81 $(Q)cp "$(ROOT_DIR)/media/openttd.32.xpm" "$(BUNDLE_DIR)/media/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
82 $(Q)cp "$(ROOT_DIR)/media/openttd."*.png "$(BUNDLE_DIR)/media/" |
10329
e7a823b7c9c1
(svn r14580) -Fix [FS#2404]: scripts directory not being copied into bundles.
rubidium <rubidium@openttd.org>
parents:
10247
diff
changeset
|
83 $(Q)cp "$(BIN_DIR)/scripts/"* "$(BUNDLE_DIR)/scripts/" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
84 ifdef MENU_DIR |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
85 $(Q)cp "$(ROOT_DIR)/media/openttd.desktop" "$(BUNDLE_DIR)/media/" |
10247
f5425de1bb3f
(svn r14477) -Fix r14474: also name the links in the .desktop file correclty upon install
truebrain <truebrain@openttd.org>
parents:
10244
diff
changeset
|
86 $(Q)cat "$(ROOT_DIR)/media/openttd.desktop" | sed s/=openttd/=$(BINARY_NAME)/g > "$(ROOT_DIR)/media/openttd.desktop.install" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
87 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
88 ifeq ($(TTD), openttd.exe) |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
89 $(Q)unix2dos "$(BUNDLE_DIR)/docs/"* "$(BUNDLE_DIR)/readme.txt" "$(BUNDLE_DIR)/COPYING" "$(BUNDLE_DIR)/changelog.txt" "$(BUNDLE_DIR)/known-bugs.txt" |
10385
9709c41adf56
(svn r14636) -Add: DOS port of OpenTTD, without network support though.
rubidium <rubidium@openttd.org>
parents:
10335
diff
changeset
|
90 ifeq ($(OS), DOS) |
9709c41adf56
(svn r14636) -Add: DOS port of OpenTTD, without network support though.
rubidium <rubidium@openttd.org>
parents:
10335
diff
changeset
|
91 $(Q)cp "$(ROOT_DIR)/os/dos/cwsdpmi.txt" "$(BUNDLE_DIR)/docs/" |
9709c41adf56
(svn r14636) -Add: DOS port of OpenTTD, without network support though.
rubidium <rubidium@openttd.org>
parents:
10335
diff
changeset
|
92 ifndef STRIP |
9709c41adf56
(svn r14636) -Add: DOS port of OpenTTD, without network support though.
rubidium <rubidium@openttd.org>
parents:
10335
diff
changeset
|
93 $(Q)cp "$(ROOT_DIR)/os/dos/cwsdpmi.exe" "$(TTD_DIR)/" |
9709c41adf56
(svn r14636) -Add: DOS port of OpenTTD, without network support though.
rubidium <rubidium@openttd.org>
parents:
10335
diff
changeset
|
94 endif |
9709c41adf56
(svn r14636) -Add: DOS port of OpenTTD, without network support though.
rubidium <rubidium@openttd.org>
parents:
10335
diff
changeset
|
95 endif |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
96 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
97 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
98 ### Packing the current bundle into several compressed file formats ### |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
99 # |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
100 # Zips & dmgs do not contain a root folder, i.e. they have files in the root of the zip/dmg. |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
101 # gzip, bzip2 and lha archives have a root folder, with the same name as the bundle. |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
102 # |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
103 # One can supply a custom name by adding BUNDLE_NAME:=<name> to the make command. |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
104 # |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
105 bundle_zip: bundle |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
106 @echo '[BUNDLE] Creating $(BUNDLE_NAME).zip' |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
107 $(Q)mkdir -p "$(BUNDLES_DIR)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
108 $(Q)cd "$(BUNDLE_DIR)" && zip -r $(shell if test -z "$(VERBOSE)"; then echo '-q'; fi) "$(BUNDLES_DIR)/$(BUNDLE_NAME).zip" . |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
109 |
12719
deb337e930ca
(svn r17184) -Add: 'bundle_7z' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12718
diff
changeset
|
110 bundle_7z: bundle |
deb337e930ca
(svn r17184) -Add: 'bundle_7z' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12718
diff
changeset
|
111 @echo '[BUNDLE] Creating $(BUNDLE_NAME).7z' |
deb337e930ca
(svn r17184) -Add: 'bundle_7z' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12718
diff
changeset
|
112 $(Q)mkdir -p "$(BUNDLES_DIR)" |
deb337e930ca
(svn r17184) -Add: 'bundle_7z' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12718
diff
changeset
|
113 $(Q)cd "$(BUNDLE_DIR)" && 7z a "$(BUNDLES_DIR)/$(BUNDLE_NAME).7z" . |
deb337e930ca
(svn r17184) -Add: 'bundle_7z' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12718
diff
changeset
|
114 |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
115 bundle_gzip: bundle |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
116 @echo '[BUNDLE] Creating $(BUNDLE_NAME).tar.gz' |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
117 $(Q)mkdir -p "$(BUNDLES_DIR)/.gzip/$(BUNDLE_NAME)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
118 $(Q)cp -R "$(BUNDLE_DIR)/"* "$(BUNDLES_DIR)/.gzip/$(BUNDLE_NAME)/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
119 $(Q)cd "$(BUNDLES_DIR)/.gzip" && tar -zc$(shell if test -n "$(VERBOSE)"; then echo 'v'; fi)f "$(BUNDLES_DIR)/$(BUNDLE_NAME).tar.gz" "$(BUNDLE_NAME)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
120 $(Q)rm -rf "$(BUNDLES_DIR)/.gzip" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
121 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
122 bundle_bzip2: bundle |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
123 @echo '[BUNDLE] Creating $(BUNDLE_NAME).tar.bz2' |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
124 $(Q)mkdir -p "$(BUNDLES_DIR)/.bzip2/$(BUNDLE_NAME)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
125 $(Q)cp -R "$(BUNDLE_DIR)/"* "$(BUNDLES_DIR)/.bzip2/$(BUNDLE_NAME)/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
126 $(Q)cd "$(BUNDLES_DIR)/.bzip2" && tar -jc$(shell if test -n "$(VERBOSE)"; then echo 'v'; fi)f "$(BUNDLES_DIR)/$(BUNDLE_NAME).tar.bz2" "$(BUNDLE_NAME)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
127 $(Q)rm -rf "$(BUNDLES_DIR)/.bzip2" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
128 |
12718
fb3916022ab0
(svn r17183) -Add [FS#2827]: 'bundle_lzma' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12684
diff
changeset
|
129 bundle_lzma: bundle |
fb3916022ab0
(svn r17183) -Add [FS#2827]: 'bundle_lzma' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12684
diff
changeset
|
130 @echo '[BUNDLE] Creating $(BUNDLE_NAME).tar.lzma' |
fb3916022ab0
(svn r17183) -Add [FS#2827]: 'bundle_lzma' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12684
diff
changeset
|
131 $(Q)mkdir -p "$(BUNDLES_DIR)/.lzma/$(BUNDLE_NAME)" |
fb3916022ab0
(svn r17183) -Add [FS#2827]: 'bundle_lzma' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12684
diff
changeset
|
132 $(Q)cp -R "$(BUNDLE_DIR)/"* "$(BUNDLES_DIR)/.lzma/$(BUNDLE_NAME)/" |
fb3916022ab0
(svn r17183) -Add [FS#2827]: 'bundle_lzma' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12684
diff
changeset
|
133 $(Q)cd "$(BUNDLES_DIR)/.lzma" && tar --lzma -c$(shell if test -n "$(VERBOSE)"; then echo 'v'; fi)f "$(BUNDLES_DIR)/$(BUNDLE_NAME).tar.lzma" "$(BUNDLE_NAME)" |
fb3916022ab0
(svn r17183) -Add [FS#2827]: 'bundle_lzma' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12684
diff
changeset
|
134 $(Q)rm -rf "$(BUNDLES_DIR)/.lzma" |
fb3916022ab0
(svn r17183) -Add [FS#2827]: 'bundle_lzma' to the bundling functions
rubidium <rubidium@openttd.org>
parents:
12684
diff
changeset
|
135 |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
136 bundle_lha: bundle |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
137 @echo '[BUNDLE] Creating $(BUNDLE_NAME).lha' |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
138 $(Q)mkdir -p "$(BUNDLES_DIR)/.lha/$(BUNDLE_NAME)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
139 $(Q)cp -R "$(BUNDLE_DIR)/"* "$(BUNDLES_DIR)/.lha/$(BUNDLE_NAME)/" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
140 $(Q)cd "$(BUNDLES_DIR)/.lha" && lha ao6 "$(BUNDLES_DIR)/$(BUNDLE_NAME).lha" "$(BUNDLE_NAME)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
141 $(Q)rm -rf "$(BUNDLES_DIR)/.lha" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
142 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
143 bundle_dmg: bundle |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
144 @echo '[BUNDLE] Creating $(BUNDLE_NAME).dmg' |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
145 $(Q)mkdir -p "$(BUNDLES_DIR)/OpenTTD $(REV)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
146 $(Q)cp -R "$(BUNDLE_DIR)/" "$(BUNDLES_DIR)/OpenTTD $(REV)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
147 $(Q)hdiutil create -ov -format UDZO -srcfolder "$(BUNDLES_DIR)/OpenTTD $(REV)" "$(BUNDLES_DIR)/$(BUNDLE_NAME).dmg" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
148 $(Q)rm -fr "$(BUNDLES_DIR)/OpenTTD $(REV)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
149 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
150 bundle_exe: all |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
151 @echo '[BUNDLE] Creating $(BUNDLE_NAME).exe' |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
152 $(Q)mkdir -p "$(BUNDLES_DIR)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
153 $(Q)unix2dos "$(ROOT_DIR)/docs/"* "$(ROOT_DIR)/readme.txt" "$(ROOT_DIR)/COPYING" "$(ROOT_DIR)/changelog.txt" "$(ROOT_DIR)/known-bugs.txt" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
154 $(Q)cd $(ROOT_DIR)/os/win32/installer && makensis.exe //DVERSION_INCLUDE=version_$(PLATFORM).txt install.nsi |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
155 $(Q)mv $(ROOT_DIR)/os/win32/installer/*$(PLATFORM).exe "$(BUNDLES_DIR)/$(BUNDLE_NAME).exe" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
156 |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
157 ifdef OSXAPP |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
158 install: |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
159 @echo '[INSTALL] Cannot install the OSX Application Bundle' |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
160 else |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
161 install: bundle |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
162 @echo '[INSTALL] Installing OpenTTD' |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
163 $(Q)install -d "$(INSTALL_BINARY_DIR)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
164 $(Q)install -d "$(INSTALL_ICON_DIR)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
165 $(Q)install -d "$(INSTALL_DATA_DIR)/gm" |
12782
8796923314d6
(svn r17261) -Fix (r17214): don't forget to package the compatability wrapper scripts
rubidium <rubidium@openttd.org>
parents:
12778
diff
changeset
|
166 $(Q)install -d "$(INSTALL_DATA_DIR)/ai" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
167 $(Q)install -d "$(INSTALL_DATA_DIR)/data" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
168 $(Q)install -d "$(INSTALL_DATA_DIR)/lang" |
10335
2dfb259d3f5d
(svn r14586) -Fix (r14580): missing mkdir causing make install to fail when there's no scripts directory already.
rubidium <rubidium@openttd.org>
parents:
10329
diff
changeset
|
169 $(Q)install -d "$(INSTALL_DATA_DIR)/scripts" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
170 $(Q)install -d "$(INSTALL_DOC_DIR)" |
10244
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
171 ifeq ($(TTD), openttd.exe) |
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
172 $(Q)install -m 755 "$(BUNDLE_DIR)/$(TTD)" "$(INSTALL_BINARY_DIR)/${BINARY_NAME}.exe" |
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
173 else |
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
174 $(Q)install -m 755 "$(BUNDLE_DIR)/$(TTD)" "$(INSTALL_BINARY_DIR)/${BINARY_NAME}" |
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
175 endif |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
176 $(Q)install -m 644 "$(BUNDLE_DIR)/lang/"* "$(INSTALL_DATA_DIR)/lang" |
12782
8796923314d6
(svn r17261) -Fix (r17214): don't forget to package the compatability wrapper scripts
rubidium <rubidium@openttd.org>
parents:
12778
diff
changeset
|
177 $(Q)install -m 644 "$(BUNDLE_DIR)/ai/"* "$(INSTALL_DATA_DIR)/ai" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
178 $(Q)install -m 644 "$(BUNDLE_DIR)/data/"* "$(INSTALL_DATA_DIR)/data" |
10329
e7a823b7c9c1
(svn r14580) -Fix [FS#2404]: scripts directory not being copied into bundles.
rubidium <rubidium@openttd.org>
parents:
10247
diff
changeset
|
179 $(Q)install -m 644 "$(BUNDLE_DIR)/scripts/"* "$(INSTALL_DATA_DIR)/scripts" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
180 $(Q)install -m 644 "$(BUNDLE_DIR)/docs/"* "$(INSTALL_DOC_DIR)" |
10243
a38f219f65a2
(svn r14473) -Fix: also install the root .txt and COPYING files to docs/
truebrain <truebrain@openttd.org>
parents:
10242
diff
changeset
|
181 $(Q)install -m 644 "$(BUNDLE_DIR)/"*.txt "$(INSTALL_DOC_DIR)" |
a38f219f65a2
(svn r14473) -Fix: also install the root .txt and COPYING files to docs/
truebrain <truebrain@openttd.org>
parents:
10242
diff
changeset
|
182 $(Q)install -m 644 "$(BUNDLE_DIR)/COPYING" "$(INSTALL_DOC_DIR)" |
10244
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
183 $(Q)install -m 644 "$(BUNDLE_DIR)/media/openttd.32.xpm" "$(INSTALL_ICON_DIR)/${BINARY_NAME}.32.xpm" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
184 ifdef ICON_THEME_DIR |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
185 $(Q)install -d "$(INSTALL_ICON_THEME_DIR)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
186 $(Q)install -d "$(INSTALL_ICON_THEME_DIR)/16x16/apps" |
10244
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
187 $(Q)install -m 644 "$(BUNDLE_DIR)/media/openttd.16.png" "$(INSTALL_ICON_THEME_DIR)/16x16/apps/${BINARY_NAME}.png" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
188 $(Q)install -d "$(INSTALL_ICON_THEME_DIR)/32x32/apps" |
10244
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
189 $(Q)install -m 644 "$(BUNDLE_DIR)/media/openttd.32.png" "$(INSTALL_ICON_THEME_DIR)/32x32/apps/${BINARY_NAME}.png" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
190 $(Q)install -d "$(INSTALL_ICON_THEME_DIR)/48x48/apps" |
10244
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
191 $(Q)install -m 644 "$(BUNDLE_DIR)/media/openttd.48.png" "$(INSTALL_ICON_THEME_DIR)/48x48/apps/${BINARY_NAME}.png" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
192 $(Q)install -d "$(INSTALL_ICON_THEME_DIR)/64x64/apps" |
10244
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
193 $(Q)install -m 644 "$(BUNDLE_DIR)/media/openttd.64.png" "$(INSTALL_ICON_THEME_DIR)/64x64/apps/${BINARY_NAME}.png" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
194 $(Q)install -d "$(INSTALL_ICON_THEME_DIR)/128x128/apps" |
10244
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
195 $(Q)install -m 644 "$(BUNDLE_DIR)/media/openttd.128.png" "$(INSTALL_ICON_THEME_DIR)/128x128/apps/${BINARY_NAME}.png" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
196 $(Q)install -d "$(INSTALL_ICON_THEME_DIR)/256x256/apps" |
10244
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
197 $(Q)install -m 644 "$(BUNDLE_DIR)/media/openttd.256.png" "$(INSTALL_ICON_THEME_DIR)/256x256/apps/${BINARY_NAME}.png" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
198 else |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
199 $(Q)install -m 644 "$(BUNDLE_DIR)/media/"*.png "$(INSTALL_ICON_DIR)" |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
200 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
201 ifdef MAN_DIR |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
202 $(Q)install -d "$(INSTALL_MAN_DIR)" |
10244
31333cb09958
(svn r14474) -Add: allow --binary-name to set the name of the binary, icon, desktop file, etc. when installing. Useful to get a stable next to a trunk-nightly
truebrain <truebrain@openttd.org>
parents:
10243
diff
changeset
|
203 $(Q)install -m 644 "$(BUNDLE_DIR)/man/openttd.6.gz" "$(INSTALL_MAN_DIR)/${BINARY_NAME}.6.gz" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
204 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
205 ifdef MENU_DIR |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
206 $(Q)install -d "$(INSTALL_MENU_DIR)" |
10247
f5425de1bb3f
(svn r14477) -Fix r14474: also name the links in the .desktop file correclty upon install
truebrain <truebrain@openttd.org>
parents:
10244
diff
changeset
|
207 $(Q)install -m 644 "$(ROOT_DIR)/media/openttd.desktop.install" "$(INSTALL_MENU_DIR)/${BINARY_NAME}.desktop" |
10057
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
208 endif |
4e7bc09b8533
(svn r14224) -Fix: copy Makefile.bundle too to your working dir, so you don't need to run ./configure in the root of OpenTTD
truebrain <truebrain@openttd.org>
parents:
diff
changeset
|
209 endif # OSXAPP |