forked from huawei/openGauss-server
33 lines
1.4 KiB
Makefile
33 lines
1.4 KiB
Makefile
# contrib/pg_upgrade_support/Makefile
|
|
|
|
PGFILEDESC = "pg_upgrade_support - server-side functions for pg_upgrade"
|
|
|
|
MODULES = pg_upgrade_support
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/pg_upgrade_support
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
ifeq ($(enable_debug), no)
|
|
override CXXFLAGS := $(filter-out -fstack-protector, $(CFLAGS)) -fstack-protector-all -Wl,-z,relro,-z,now -fPIC
|
|
override CPPFLAGS += $(filter-out -fstack-protector, $(CFLAGS)) -fstack-protector-all -Wl,-z,relro,-z,now -fPIC
|
|
else
|
|
override CXXFLAGS := $(filter-out -fstack-protector, $(CFLAGS)) -fstack-protector-all -Wl,-z,relro,-z,now -fPIC
|
|
override CPPFLAGS += $(filter-out -fstack-protector, $(CFLAGS)) -fstack-protector-all -Wl,-z,relro,-z,now -fPIC
|
|
endif
|
|
|
|
override CXXFLAGS := $(filter-out -fstack-protector -fPIE, $(CFLAGS)) -fPIC -fstack-protector-all -Wl,-z,relro,-z,now
|
|
override CPPFLAGS :=$(filter-out -fPIE, $(CPPFLAGS)) -fPIC
|
|
endif
|
|
|
|
override mywarningflags:=-Wall -Werror -Wendif-labels -Wformat-security -Wmissing-format-attribute -Wpointer-arith -Wno-write-strings -Wno-attributes -Wno-unused-but-set-variable
|
|
override CXXFLAGS:=$(filter-out $(mywarningflags),$(CXXFLAGS))
|
|
override CXXFLAGS+=$(mywarningflags)
|
|
override CPPFLAGS:=$(filter-out $(mywarningflags),$(CPPFLAGS))
|
|
|