From 55198262d79944fa7382868f7ecd108ed4f238a2 Mon Sep 17 00:00:00 2001 From: Evan Shelhamer Date: Fri, 14 Feb 2014 23:28:26 -0800 Subject: [PATCH] define by := (no need for re-expansion) --- Makefile.config.example | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.config.example b/Makefile.config.example index fe117b7..b70ccf2 100644 --- a/Makefile.config.example +++ b/Makefile.config.example @@ -26,9 +26,9 @@ INCLUDE_DIRS := $(PYTHON_INCLUDES) /usr/local/include LIBRARY_DIRS := $(PYTHON_LIB) /usr/lib /usr/local/lib # For OS X, use clang++. -CXX=/usr/bin/g++ +CXX := /usr/bin/g++ # For OS X 10.9, use libstdc++ instead of libc++ for CUDA compatibility. -#CXXFLAGS=-stdlib=libstdc++ +#CXXFLAGS := -stdlib=libstdc++ -BUILD_DIR=build -DISTRIBUTE_DIR=distribute +BUILD_DIR := build +DISTRIBUTE_DIR := distribute -- 2.7.4