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>
36 lines
834 B
Makefile
36 lines
834 B
Makefile
#############################################################
|
|
#
|
|
# makedevs
|
|
#
|
|
#############################################################
|
|
|
|
# source included in buildroot
|
|
MAKEDEVS_SOURCE =
|
|
HOST_MAKEDEVS_SOURCE =
|
|
|
|
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 MAKEDEVS_UNINSTALL_TARGET_CMDS
|
|
rm -f $(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))
|