buildroot_playground/package/helloworld/helloworld.mk
2019-04-14 20:02:34 +02:00

13 lines
299 B
Makefile

HELLOWORLD_VERSION = v1.0
HELLOWORLD_SITE = $(TOPDIR)/../package/helloworld/src
HELLOWORLD_SITE_METHOD = local
define HELLOWORLD_BUILD_CMDS
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
define HELLOWORLD_INSTALL_TARGET_CMDS
rsync -a $(@D) $(TARGET_DIR)/root/
endef
$(eval $(generic-package))