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>
32 lines
793 B
Makefile
32 lines
793 B
Makefile
#############################################################
|
|
#
|
|
# luafilesystem
|
|
#
|
|
#############################################################
|
|
|
|
LUAFILESYSTEM_VERSION = 1.5.0
|
|
LUAFILESYSTEM_SITE = http://github.com/downloads/keplerproject/luafilesystem
|
|
LUAFILESYSTEM_DEPENDENCIES = lua
|
|
|
|
ifeq ($(BR2_LARGEFILE),y)
|
|
LFS_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
|
|
endif
|
|
|
|
define LUAFILESYSTEM_BUILD_CMDS
|
|
$(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS) $(LFS_CFLAGS) -fPIC"
|
|
endef
|
|
|
|
define LUAFILESYSTEM_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D $(@D)/src/lfs.so $(TARGET_DIR)/usr/lib/lua/lfs.so
|
|
endef
|
|
|
|
define LUAFILESYSTEM_UNINSTALL_TARGET_CMDS
|
|
rm -f "$(TARGET_DIR)/usr/lib/lua/lfs.so"
|
|
endef
|
|
|
|
define LUAFILESYSTEM_CLEAN_CMDS
|
|
$(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
$(eval $(generic-package))
|