0849e8193e
Thanks to the pkgparentdir and pkgname functions, we can rewrite the GENTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
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 $(call GENTARGETS))
|
|
$(eval $(call GENTARGETS,host))
|