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/plugins/native/libtool.mk

14 lines
403 B

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libtool
$(PKG)_TARGETS := $(BUILD)
$(PKG)_DEPS_$(BUILD) := autoconf automake
define $(PKG)_BUILD_$(BUILD)
mkdir '$(1).build'
cd '$(1).build' && '$(1)/configure' \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1).build' -j '$(JOBS)'
$(MAKE) -C '$(1).build' -j 1 install
endef