summaryrefslogtreecommitdiff
path: root/config.make.in
diff options
context:
space:
mode:
Diffstat (limited to 'config.make.in')
-rw-r--r--config.make.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.make.in b/config.make.in
index 81cef48b..2bd3d3e8 100644
--- a/config.make.in
+++ b/config.make.in
@@ -1,7 +1,9 @@
# Makefile settings shared between Makefiles.
CC = @CC@
+CXX = @CXX@
CFLAGS = @CFLAGS@
+CXXFLAGS = @CXXFLAGS@
CCPIC = @CCPIC@
CCPIC_MAYBE = @CCPIC_MAYBE@
CPPFLAGS = @CPPFLAGS@
@@ -52,7 +54,9 @@ infodir = @infodir@
# flags before CPPFLAGS and LDFLAGS.
COMPILE = $(CC) $(PRE_CPPFLAGS) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(CCPIC) $(DEP_FLAGS)
+COMPILE_CXX = $(CXX) $(PRE_CPPFLAGS) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(CCPIC) $(DEP_FLAGS)
LINK = $(CC) $(CFLAGS) $(PRE_LDFLAGS) $(LDFLAGS)
+LINK_CXX = $(CXX) $(CXXFLAGS) $(PRE_LDFLAGS) $(LDFLAGS)
# Default rule. Must be here, since config.make is included before the
# usual targets.