Files
CoreMP135_buildroot/package/enscript/enscript.mk
T

20 lines
525 B
Makefile
Raw Normal View History

2013-06-05 23:53:30 +00:00
################################################################################
2013-03-25 13:27:57 +00:00
#
# enscript
#
2013-06-05 23:53:30 +00:00
################################################################################
2013-03-25 13:27:57 +00:00
ENSCRIPT_VERSION = 1.6.6
ENSCRIPT_SITE = $(BR2_GNU_MIRROR)/enscript
ENSCRIPT_LICENSE = GPL-3.0+
2013-03-25 13:27:57 +00:00
ENSCRIPT_LICENSE_FILES = COPYING
# Enable pthread threads if toolchain supports threads
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
2015-03-31 09:21:57 +02:00
ENSCRIPT_CONF_OPTS += --enable-threads=pth
2013-03-25 13:27:57 +00:00
else
2015-03-31 09:21:57 +02:00
ENSCRIPT_CONF_OPTS += --disable-threads
2013-03-25 13:27:57 +00:00
endif
$(eval $(autotools-package))