cc4dedd962
- Use CFLAGS from command line - Remove "Check C compiler type (optimization options)" This test force optimization to -O3 while it is already set in CFLAGS - Don't use host CPP - Remove "Check for Large File Support" LFS support is already set in CFLAGS Note: configure script still use host nm Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
26 lines
692 B
Makefile
26 lines
692 B
Makefile
################################################################################
|
|
#
|
|
# infozip
|
|
#
|
|
################################################################################
|
|
|
|
INFOZIP_VERSION = 30
|
|
INFOZIP_SOURCE = zip$(INFOZIP_VERSION).tgz
|
|
INFOZIP_SITE = ftp://ftp.info-zip.org/pub/infozip/src
|
|
INFOZIP_LICENSE = Info-ZIP
|
|
INFOZIP_LICENSE_FILES = LICENSE
|
|
|
|
define INFOZIP_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
|
|
CFLAGS="$(TARGET_CFLAGS) -I. -DUNIX" \
|
|
AS="$(TARGET_CC) -c" \
|
|
-f unix/Makefile generic
|
|
endef
|
|
|
|
define INFOZIP_INSTALL_TARGET_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
|
|
prefix=$(TARGET_DIR)/usr
|
|
endef
|
|
|
|
$(eval $(generic-package))
|