annotate src/build-flex.mk @ 3409:5e77c5fc91ed

qt: build translations in cross build and install * src/qt.mk: in cross compile configure options, set translate path and -make option. * makeinst-script.sh: Add createion and removal of libexec\octave\octave-version\qt.conf
author John Donoghue <john.donoghue@ieee.org>
date Fri, 10 Jan 2014 21:22:39 -0500
parents 080a2acf178f
children 13be64f9f16d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2990
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-flex
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 $(PKG)_CHECKSUM := db4b140f2aff34c6197cab919828cc4146aae218
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 $(PKG)_SUBDIR := flex-$($(PKG)_VERSION)
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_FILE := flex-$($(PKG)_VERSION).tar.bz2
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_URL := http://prdownloads.sourceforge.net/flex/$($(PKG)_FILE)
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_DEPS :=
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 define $(PKG)_UPDATE
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo $($(PKG)_VERSION)
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 endef
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 define $(PKG)_BUILD
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 mkdir '$(1).build'
3032
080a2acf178f remove some debugging code accidentally left in build-flex.mk
John W. Eaton <jwe@octave.org>
parents: 3029
diff changeset
19 cd '$(1).build' && '$(1)/configure' \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2990
diff changeset
20 --prefix='$(BUILD_TOOLS_PREFIX)'
2990
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 $(MAKE) -C '$(1).build' -j '$(JOBS)'
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 $(MAKE) -C '$(1).build' -j 1 install
5329f4891fb7 build our own bison and flex
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 endef