mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 12:33:02 +02:00
For some reason, the `make license-info` target complained klinfix needed a hash file, but not the other local repos. Issue #67 tracks adding license-info to releases, which will need some looking into, for now this fixes the most glaring packaging oversights. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
23 lines
628 B
Makefile
23 lines
628 B
Makefile
################################################################################
|
|
#
|
|
# factory
|
|
#
|
|
################################################################################
|
|
FACTORY_VERSION = 1.0
|
|
FACTORY_LICENSE = MIT
|
|
FACTORY_LICENSE_FILES = LICENSE
|
|
FACTORY_SITE_METHOD = local
|
|
FACTORY_SITE = $(BR2_EXTERNAL_INFIX_PATH)/src/factory
|
|
|
|
define FACTORY_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
LDLIBS="$(TARGET_LDFLAGS)"
|
|
endef
|
|
|
|
define FACTORY_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
DESTDIR="$(TARGET_DIR)" install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|