22ea98e727
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
525 B
Makefile
21 lines
525 B
Makefile
################################################################################
|
|
#
|
|
# picocom
|
|
#
|
|
################################################################################
|
|
|
|
PICOCOM_VERSION = 1.7
|
|
PICOCOM_SITE = http://picocom.googlecode.com/files/
|
|
PICOCOM_LICENSE = GPLv2+
|
|
PICOCOM_LICENSE_FILES = LICENSE.txt
|
|
|
|
define PICOCOM_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define PICOCOM_INSTALL_TARGET_CMDS
|
|
install -D -m 0755 $(@D)/picocom $(TARGET_DIR)/usr/bin/picocom
|
|
endef
|
|
|
|
$(eval $(generic-package))
|