e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
544 B
Makefile
19 lines
544 B
Makefile
#############################################################
|
|
#
|
|
# jpeg (libraries needed by some apps)
|
|
#
|
|
#############################################################
|
|
JPEG_VERSION = 8d
|
|
JPEG_SITE = http://www.ijg.org/files/
|
|
JPEG_SOURCE = jpegsrc.v$(JPEG_VERSION).tar.gz
|
|
JPEG_INSTALL_STAGING = YES
|
|
|
|
define JPEG_REMOVE_USELESS_TOOLS
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtrans rdjpgcom wrjpgcom)
|
|
endef
|
|
|
|
JPEG_POST_INSTALL_TARGET_HOOKS += JPEG_REMOVE_USELESS_TOOLS
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|