refactored gmp locations...

This commit is contained in:
Gilbert Bernstein
2013-02-10 15:04:10 -08:00
parent 4717874aa1
commit f9e81f0604
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -63,7 +63,7 @@ endif
# include paths (flattens the hierarchy for include directives)
INC := -I src/ $(addprefix -I src/,$(SUBDIRECTORIES))
# Place the location of GMP header files here
GMPINC := -I $(GMP_PREFIX)/include
GMPINC := -I $(GMP_INC_DIR)
INC := $(INC) $(GMPINC)
# use the second line to disable profiling instrumentation
@@ -75,9 +75,9 @@ CCDFLAGS := -Wall $(INC) $(CONFIG) -ggdb
CXXDFLAGS := $(CCDFLAGS)
# Place the location of GMP libraries here
#GMPLD := -L$(GMP_PREFIX)/lib -lgmpxx -lgmp
#GMPLD := -L$(GMP_LIB_DIR) -lgmpxx -lgmp
# static versionÉ
GMPLD := $(GMP_PREFIX)/lib/libgmpxx.a $(GMP_PREFIX)/lib/libgmp.a
GMPLD := $(GMP_LIB_DIR)/libgmpxx.a $(GMP_LIB_DIR)/libgmp.a
GL_LD := -framework OpenGL
+2 -2
View File
@@ -1,3 +1,3 @@
GMP_PREFIX = /usr/local/Cellar/gmp/5.0.2
GMP_INC_DIR = /usr/local/Cellar/gmp/5.0.2/include
GMP_LIB_DIR = /usr/local/Cellar/gmp/5.0.2/lib