Skip to content
Snippets Groups Projects
Commit 7a3a9410 authored by Niels Möller's avatar Niels Möller
Browse files

(CXX, CXXFLAGS, COMPILE_CXX, LINK_CXX): New variables.

Rev: src/nettle/config.make.in:1.11
parent 3d7f097f
No related branches found
No related tags found
No related merge requests found
# 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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment