annotate src/uuid.mk @ 3778:f981744a8f4a

uuid: dont install libuuid.dll.a when creating libuuid.dll * src/uuid.mk: remove created libuuid.dll.a
author John Donoghue <john.donoghue@ieee.org>
date Mon, 26 Jan 2015 19:01:48 -0500
parents 8b8a7593b08a
children 79c7aec27739
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
3767
8b8a7593b08a uuid: use mingw-w64 instead of w32
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
5 $(PKG)_IGNORE = $(mingw-w64_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
3767
8b8a7593b08a uuid: use mingw-w64 instead of w32
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
7 $(PKG)_CHECKSUM = $(mingw-w64_CHECKSUM)
8b8a7593b08a uuid: use mingw-w64 instead of w32
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
8 $(PKG)_SUBDIR = $(mingw-w64_SUBDIR)
8b8a7593b08a uuid: use mingw-w64 instead of w32
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
9 $(PKG)_FILE = $(mingw-w64_FILE)
8b8a7593b08a uuid: use mingw-w64 instead of w32
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
10 $(PKG)_URL = $(mingw-w64_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)'; \
3767
8b8a7593b08a uuid: use mingw-w64 instead of w32
John Donoghue <john.donoghue@ieee.org>
parents: 3480
diff changeset
20 $(MAKE_SHARED_FROM_STATIC) --ar '$(MXE_AR)' --ld '$(MXE_CC)' '$(HOST_LIBDIR)/libuuid.a' --install '$(INSTALL)' --libdir '$(HOST_LIBDIR)' --bindir '$(HOST_BINDIR)'; \
3778
f981744a8f4a uuid: dont install libuuid.dll.a when creating libuuid.dll
John Donoghue <john.donoghue@ieee.org>
parents: 3767
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