e0da140d82
Quoting pcre.org: There are two major versions of the PCRE library. The current version, PCRE2, released in 2015, is now at version 10.39. The older, but still widely deployed PCRE library, originally released in 1997, is at version 8.45. This version of PCRE is now at end of life, and is no longer being actively maintained. Version 8.45 is expected to be the final release of the older PCRE library, and new projects should use PCRE2 instead. Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
73 lines
1.4 KiB
Makefile
73 lines
1.4 KiB
Makefile
SUBDIRS = include src utils man
|
|
|
|
PKG_CONFIG ?= pkg-config
|
|
DISABLE_SETRANS ?= n
|
|
DISABLE_RPM ?= n
|
|
ANDROID_HOST ?= n
|
|
LABEL_BACKEND_ANDROID ?= n
|
|
ifeq ($(ANDROID_HOST),y)
|
|
override DISABLE_SETRANS=y
|
|
override DISABLE_BOOL=y
|
|
endif
|
|
ifeq ($(DISABLE_RPM),y)
|
|
DISABLE_FLAGS+= -DDISABLE_RPM
|
|
endif
|
|
ifeq ($(DISABLE_SETRANS),y)
|
|
DISABLE_FLAGS+= -DDISABLE_SETRANS
|
|
endif
|
|
ifeq ($(DISABLE_BOOL),y)
|
|
DISABLE_FLAGS+= -DDISABLE_BOOL
|
|
endif
|
|
ifeq ($(DISABLE_X11),y)
|
|
DISABLE_FLAGS+= -DNO_X_BACKEND
|
|
endif
|
|
export DISABLE_SETRANS DISABLE_RPM DISABLE_FLAGS ANDROID_HOST DISABLE_X11 LABEL_BACKEND_ANDROID
|
|
|
|
USE_PCRE2 ?= y
|
|
ifeq ($(USE_PCRE2),y)
|
|
PCRE_MODULE := libpcre2-8
|
|
PCRE_CFLAGS := -DUSE_PCRE2 -DPCRE2_CODE_UNIT_WIDTH=8
|
|
else
|
|
PCRE_MODULE := libpcre
|
|
endif
|
|
PCRE_CFLAGS += $(shell $(PKG_CONFIG) --cflags $(PCRE_MODULE))
|
|
PCRE_LDLIBS := $(shell $(PKG_CONFIG) --libs $(PCRE_MODULE))
|
|
export PCRE_MODULE PCRE_CFLAGS PCRE_LDLIBS
|
|
|
|
OS := $(shell uname)
|
|
export OS
|
|
|
|
ifeq ($(shell $(CC) -v 2>&1 | grep "clang"),)
|
|
COMPILER := gcc
|
|
else
|
|
COMPILER := clang
|
|
endif
|
|
export COMPILER
|
|
|
|
all install relabel clean distclean indent:
|
|
@for subdir in $(SUBDIRS); do \
|
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
|
done
|
|
|
|
swigify: all
|
|
$(MAKE) -C src $@
|
|
|
|
pywrap:
|
|
$(MAKE) -C src $@
|
|
|
|
rubywrap:
|
|
$(MAKE) -C src $@
|
|
|
|
install-pywrap:
|
|
$(MAKE) -C src $@
|
|
|
|
install-rubywrap:
|
|
$(MAKE) -C src $@
|
|
|
|
clean-pywrap:
|
|
$(MAKE) -C src $@
|
|
|
|
clean-rubywrap:
|
|
$(MAKE) -C src $@
|
|
|
|
test:
|