You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/mingw-utils.mk

41 lines
1.3 KiB

# This file is part of MXE.
# See index.html for further information.
PKG := mingw-utils
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.4-1
$(PKG)_CHECKSUM := 716f51d7622b36448fc1e92d2c69d8f41b1cc2df
$(PKG)_SUBDIR := $(PKG)-$(word 1,$(subst -, ,$($(PKG)_VERSION)))
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION)-mingw32-src.tar.lzma
$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/mingw/MinGW/Extension/$(PKG)/$(PKG)-$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS :=
$(PKG)_DEPS_i686-pc-mingw32 := gcc
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://sourceforge.net/projects/mingw/files/MinGW/Extension/mingw-utils/' | \
$(SED) -n 's,.*mingw-utils-\([0-9][^"]*\)/".*,\1,p' | \
head -1
endef
define $(PKG)_BUILD_i686-pc-mingw32
# native build
cp -Rp '$(1)' '$(1).native'
cd '$(1).native' && ./configure \
--disable-shared \
--prefix='$(PREFIX)' \
CFLAGS='-Wno-error=return-type'
$(MAKE) -C '$(1).native/reimp' -j '$(JOBS)'
$(INSTALL) -m755 '$(1).native/reimp/reimp' '$(PREFIX)/bin/$(TARGET)-reimp'
# cross build
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install
endef
$(PKG)_BUILD_SHARED =