annotate src/uuid.mk @ 3725:2acaa9943159

qscintilla: update 2.8.4 * src/qscintilla.mk: update to version and checksum for 2.8.4
author John Donoghue
date Mon, 20 Oct 2014 11:01:00 -0400
parents 13be64f9f16d
children 8b8a7593b08a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2993
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 # This file is part of MXE.
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 # See index.html for further information.
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 PKG := uuid
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 $(PKG)_IGNORE = $(w32api_IGNORE)
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3048
diff changeset
6 $(PKG)_VERSION := 3.17
2993
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 $(PKG)_CHECKSUM = $(w32api_CHECKSUM)
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8 $(PKG)_SUBDIR = $(w32api_SUBDIR)
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 $(PKG)_FILE = $(w32api_FILE)
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 $(PKG)_URL = $(w32api_URL)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3020
diff changeset
11 $(PKG)_DEPS =
2993
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 echo "$(w32api_VERSION)"
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15 endef
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17 define $(PKG)_BUILD
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18 if [ $(BUILD_SHARED) = yes ]; then \
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
19 $(INSTALL) -d '$(HOST_BINDIR)'; \
3020
41800279e33a Update uuid.mk to use MXE_XXX for AR and CC
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
20 $(MAKE_SHARED_FROM_STATIC) --ar '$(MXE_AR)' --ld '$(MXE_CC)' '$(1)/lib/libuuid.a' --install '$(INSTALL)' --libdir '$(HOST_LIBDIR)' --bindir '$(HOST_BINDIR)'; \
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 rm -f '$(HOST_LIBDIR)/libuuid.dll.a'; \
2993
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
22 fi
1f944d8d6fe5 Modfications for libuuid dependancies
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
23 endef