mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
366bba0227
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
38 lines
941 B
Makefile
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 =
|