6268be239a
Now that the package infrastructure doesn't attempt to download a package that has an empty version string, there's no need to define the VERSION and SOURCE variables in the makedevs package. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# makedevs
|
|
#
|
|
################################################################################
|
|
|
|
MAKEDEVS_LICENSE = GPLv2
|
|
|
|
HOST_MAKEDEVS_CFLAGS = $(HOST_CFLAGS)
|
|
HOST_MAKEDEVS_LDFLAGS = $(HOST_LDFLAGS)
|
|
|
|
ifeq ($(BR2_ROOTFS_DEVICE_TABLE_SUPPORTS_EXTENDED_ATTRIBUTES),y)
|
|
HOST_MAKEDEVS_DEPENDENCIES += host-libcap
|
|
HOST_MAKEDEVS_CFLAGS += -DEXTENDED_ATTRIBUTES
|
|
HOST_MAKEDEVS_LDFLAGS += -lcap
|
|
endif
|
|
|
|
define MAKEDEVS_BUILD_CMDS
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) \
|
|
package/makedevs/makedevs.c -o $(@D)/makedevs
|
|
endef
|
|
|
|
define MAKEDEVS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 755 $(@D)/makedevs $(TARGET_DIR)/usr/sbin/makedevs
|
|
endef
|
|
|
|
define HOST_MAKEDEVS_BUILD_CMDS
|
|
$(HOSTCC) $(HOST_MAKEDEVS_CFLAGS) package/makedevs/makedevs.c \
|
|
-o $(@D)/makedevs $(HOST_MAKEDEVS_LDFLAGS)
|
|
endef
|
|
|
|
define HOST_MAKEDEVS_INSTALL_CMDS
|
|
$(INSTALL) -D -m 755 $(@D)/makedevs $(HOST_DIR)/usr/bin/makedevs
|
|
endef
|
|
|
|
$(eval $(generic-package))
|
|
$(eval $(host-generic-package))
|