genode/repos/libports/lib/mk/pcre.mk
Norman Feske 366bba0227 Exclude higher-level repos from strict warnings
This is a follow-up commit to "Increase default warning level", which
overrides Genode's new default warning level for targets contained in
higher-level repositories. By explicitly whitelisting all those targets,
we can selectively adjust them to the new strictness over time - by
looking out for 'CC_CXX_WARN_STRICT' in the target description files.

Issue #465
2018-01-17 12:14:36 +01:00

38 lines
941 B
Makefile

PCRE_PORT_DIR := $(call select_from_ports,pcre)
SRC_C = pcre_byte_order.c \
pcre_chartables.c \
pcre_compile.c \
pcre_config.c \
pcre_dfa_exec.c \
pcre_exec.c \
pcre_fullinfo.c \
pcre_get.c \
pcre_globals.c \
pcre_maketables.c \
pcre_newline.c \
pcre_ord2utf8.c \
pcre_refcount.c \
pcre_string_utils.c \
pcre_study.c \
pcre_tables.c \
pcre_ucd.c \
pcre_valid_utf8.c \
pcre_version.c \
pcre_xclass.c
INC_DIR += $(PCRE_PORT_DIR)/include/pcre \
$(PCRE_PORT_DIR)/src/lib/pcre \
$(REP_DIR)/src/lib/pcre/include
CC_OPT += -DHAVE_CONFIG_H
LIBS += libc
SHARED_LIB = yes
vpath %.c $(PCRE_PORT_DIR)/src/lib/pcre
vpath pcre_chartables.c $(REP_DIR)/src/lib/pcre
CC_CXX_WARN_STRICT =