From: Niels Möller Date: Fri, 24 Nov 2006 16:20:57 +0000 (+0100) Subject: (CXX, CXXFLAGS, COMPILE_CXX, LINK_CXX): New variables. X-Git-Tag: nettle_1.15_release_20061128~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a3a9410f895c73fb44668c2253e6666016aed2a;p=thirdparty%2Fnettle.git (CXX, CXXFLAGS, COMPILE_CXX, LINK_CXX): New variables. Rev: src/nettle/config.make.in:1.11 --- 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.