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

16 lines
452 B

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