make: Replace BUILD_XXX make flag variables by FINAL_XXX

The following BUILD_XXX variables are renamed to their respective FINAL_XXX
counterparts, as that name is more expressive:

  BUILD_CFLAGS, BUILD_CPPFLAGS, BUILD_CXXFLAGS, BUILD_EXTRA_DEBUG_FLAGS,
  BUILD_INCLUDE, BUILD_LDFLAGS, BUILD_LIBFLAGS, BUILD_LPPFLAGS

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2019-06-24 12:58:53 +00:00
commit 3365aa3db6
18 changed files with 249 additions and 249 deletions

View file

@ -3,19 +3,19 @@ ifeq ($(USE_WT),true)
# WT_VERSION = $(shell $(RPM) -q wt-devel | sed 's/wt-devel-\([0-9]\+\.[0-9]\+\.[0-9]\+\).*/\1/;')
ifeq ($(USE_WT_FASTCGI),true)
BUILD_LDFLAGS += -lwtfcgi
FINAL_LDFLAGS += -lwtfcgi
endif
ifeq ($(USE_WT_HTTPD),true)
BUILD_LDFLAGS += -lwthttp
BUILD_CFLAGS += -DCONNECTOR_HTTP=YES
BUILD_CXXFLAGS += -DCONNECTOR_HTTP=YES
FINAL_LDFLAGS += -lwthttp
FINAL_CFLAGS += -DCONNECTOR_HTTP=YES
FINAL_CXXFLAGS += -DCONNECTOR_HTTP=YES
endif
ifeq ($(USE_WT_DBO),true)
BUILD_LDFLAGS += -lwtdbopostgres -lwtdbosqlite3 -lwtdbo
FINAL_LDFLAGS += -lwtdbopostgres -lwtdbosqlite3 -lwtdbo
endif
BUILD_LDFLAGS += -lwt
FINAL_LDFLAGS += -lwt
endif