20 lines
620 B
Makefile
20 lines
620 B
Makefile
|
################################################################################
|
||
|
#
|
||
|
# mbuffer
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
MBUFFER_VERSION = 20191016
|
||
|
MBUFFER_SOURCE = mbuffer-$(MBUFFER_VERSION).tgz
|
||
|
MBUFFER_SITE = http://www.maier-komor.de/software/mbuffer
|
||
|
MBUFFER_LICENSE = GPL-3.0+
|
||
|
MBUFFER_LICENSE_FILES = LICENSE
|
||
|
MBUFFER_CONF_OPTS = --disable-debug
|
||
|
MBUFFER_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -std=c99"
|
||
|
|
||
|
# we don't need tests & co. so we specify a target
|
||
|
# so that the others don't get built, e.g idev.so
|
||
|
MBUFFER_MAKE_OPTS += mbuffer
|
||
|
|
||
|
$(eval $(autotools-package))
|