mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-12 06:43:43 +08:00
21 lines
512 B
Makefile
21 lines
512 B
Makefile
|
#############################################################
|
||
|
#
|
||
|
# unionfs
|
||
|
#
|
||
|
#############################################################
|
||
|
|
||
|
UNIONFS_VERSION = 0.24
|
||
|
UNIONFS_SITE = http://podgorny.cz/unionfs-fuse/releases
|
||
|
UNIONFS_SOURCE = unionfs-fuse-$(UNIONFS_VERSION).tar.bz2
|
||
|
UNIONFS_DEPENDENCIES = libfuse
|
||
|
|
||
|
define UNIONFS_BUILD_CMDS
|
||
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
||
|
endef
|
||
|
|
||
|
define UNIONFS_INSTALL_TARGET_CMDS
|
||
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) install
|
||
|
endef
|
||
|
|
||
|
$(eval $(call GENTARGETS))
|