annotate src/uuid.mk @ 5534:372ea4c0afb2

Move of-ocs PKG_XXXX to inst dir and add break patch * src/of-ocs-3-break-fixes.patch, src/of-ocs-4-pkgadd-fixes.patch: new files * dist-files.mk: add ref to files
author John Donoghue <john.donoghue@ieee.org>
date Sun, 13 Sep 2020 08:15:14 -0400
parents 79c7aec27739
children
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)
4641
79c7aec27739 * src/uuid.mk: add mingw-w64 as a dependancy for package
John Donoghue <john.donoghue@ieee.org>
parents: 3778
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)
4641
79c7aec27739 * src/uuid.mk: add mingw-w64 as a dependancy for package
John Donoghue <john.donoghue@ieee.org>
parents: 3778
diff changeset
11 $(PKG)_DEPS = mingw-w64
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
4641
79c7aec27739 * src/uuid.mk: add mingw-w64 as a dependancy for package
John Donoghue <john.donoghue@ieee.org>
parents: 3778
diff changeset
14 echo "$($(PKG)_VERSION)"
2993
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