annotate src/qwtplot3d.mk @ 3256:7fb479d0241c

Update build tools for native mingw * src/build-m4.mk: do nothing for native mingw build * Makefile.in: - add bison, m4 as natve mingw, and python as jit build requirements. - remove build-bison as a mingw build dependancy * index.html: Add msys-bison to mingw required packages and mention ghostscript and python.
author John Donoghue <john.donoghue@ieee.org>
date Thu, 26 Sep 2013 21:18:39 -0400
parents 5ef49fb3299d
children 13be64f9f16d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2044
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
2024
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
3
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
4 PKG := qwtplot3d
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
6 $(PKG)_CHECKSUM := 4463fafb8420a91825e165da7a296aaabd70abea
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
7 $(PKG)_SUBDIR := $(PKG)
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tgz
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
10 $(PKG)_DEPS := qt zlib
2024
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
11
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
13 $(WGET) -q -O- 'http://sourceforge.net/projects/$(PKG)/files/$(PKG)/' | \
2024
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
14 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
15 head -1
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
16 endef
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
17
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
18 define $(PKG)_BUILD
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
19 cd '$(1)' && '$(MXE_QMAKE)'
2044
d82c8cc0bfac package qwtplot3d: use $(MAKE) variable
Tony Theodore <tonyt@logyst.com>
parents: 2024
diff changeset
20 $(MAKE) -C '$(1)' -j '$(JOBS)'
3014
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
21 $(INSTALL) -d '$(HOST_LIBDIR)'
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
22 $(INSTALL) -m644 '$(1)/lib/libqwtplot3d.a' '$(HOST_LIBDIR)'
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
23 $(INSTALL) -d '$(HOST_INCDIR)'
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
24 $(INSTALL) -d '$(HOST_INCDIR)/qwtplot3d'
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
25 $(INSTALL) -m644 '$(1)/include'/*.h '$(HOST_INCDIR)/qwtplot3d'
2024
26f8c8564952 new package qwtplot3d
Gareth Coco <garethcoco@gmail.com>
parents:
diff changeset
26 endef