mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-28 19:53:01 +02:00
Add bash completion for the common datastores, like we already do in the CLI, and update the usage text accordingly. Also, make sure to install to /usr/bin, not /bin since we've now merged the hierarchies since a while back. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
22 lines
514 B
Makefile
22 lines
514 B
Makefile
################################################################################
|
|
#
|
|
# bin
|
|
#
|
|
################################################################################
|
|
|
|
BIN_VERSION = 1.0
|
|
BIN_SITE_METHOD = local
|
|
BIN_SITE = $(BR2_EXTERNAL_INFIX_PATH)/src/bin
|
|
BIN_LICENSE = BSD-3-Clause
|
|
BIN_LICENSE_FILES = LICENSE
|
|
BIN_REDISTRIBUTE = NO
|
|
BIN_DEPENDENCIES = sysrepo libite
|
|
BIN_CONF_OPTS = --disable-silent-rules
|
|
BIN_AUTORECONF = YES
|
|
|
|
define BIN_CONF_ENV
|
|
CFLAGS="$(INFIX_CFLAGS)"
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|