annotate src/glu.mk @ 4492:4c0606a85383

glu: New module.
author John W. Eaton <jwe@octave.org>
date Fri, 06 Oct 2017 08:27:03 -0400
parents
children 979f5b397e51
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4492
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := glu
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 $(PKG)_VERSION := 9.0.0
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 $(PKG)_CHECKSUM := c2814bbaf1e60e28a75ec80f4646047c0da742bd
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := glu-$($(PKG)_VERSION)
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := glu-$($(PKG)_VERSION).tar.bz2
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := ftp://ftp.freedesktop.org/pub/mesa/glu/$($(PKG)_FILE)
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS := mesa
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 ifeq ($(MXE_WINDOWS_BUILD),yes)
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 define $(PKG)_BUILD
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 endef
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 else
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 define $(PKG)_BUILD
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 mkdir '$(1)/.build'
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 cd '$(1)/.build' && $($(PKG)_CONFIGURE_ENV) '$(1)/configure' \
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 --prefix='$(HOST_PREFIX)' \
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 && $(CONFIGURE_POST_HOOK)
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)'
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 endef
4c0606a85383 glu: New module.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 endif