mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-21 21:57:38 +01:00
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:
parent
e0486a936e
commit
3365aa3db6
18 changed files with 249 additions and 249 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue