21510bdb0b
[Thomas: change license to be GPLv2. The header of makedevs.c is a bit unclear, as it mentions both the GPL and LGPL. But since the code seems to originally be coming from Busybox, assuming GPLv2 is the safest option.] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
34 lines
863 B
Makefile
34 lines
863 B
Makefile
################################################################################
|
|
#
|
|
# makedevs
|
|
#
|
|
################################################################################
|
|
|
|
# source included in buildroot
|
|
MAKEDEVS_SOURCE =
|
|
HOST_MAKEDEVS_SOURCE =
|
|
|
|
MAKEDEVS_VERSION = buildroot-$(BR2_VERSION)
|
|
MAKEDEVS_LICENSE = GPLv2
|
|
|
|
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_CFLAGS) $(HOST_LDFLAGS) \
|
|
package/makedevs/makedevs.c -o $(@D)/makedevs
|
|
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))
|