Skip to content

Commit

Permalink
Test compiler version for brew installation
Browse files Browse the repository at this point in the history
  • Loading branch information
ivazquez committed Mar 18, 2016
1 parent fb172e9 commit ea35aa7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CC = g++-mp-4.7
CC = g++
GSL = `gsl-config --cflags --libs`
CC_FLAGS = -Wall -O3 -static-libgcc -static-libstdc++ -fopenmp -DHAVE_INLINE
CC_FLAGS = -Wall -O3 -static-libgcc -static-libstdc++ -fopenmp -DHAVE_INLINE
LD_FLAGS = ${GSL} -fopenmp
prefobj = emission.o common-functions.o
filterHDobj = emission.o common-functions.o jump-diffusion.o minimization.o
Expand All @@ -17,7 +17,7 @@ cloneHD: $(cloneHDobj) cloneHD.o
$(CC) $(CC_FLAGS) $^ -o ../build/cloneHD $(LD_FLAGS)
%.o: %.cpp
$(CC) $(CC_FLAGS) -c $< -o $@
$(cloneobj): clone.h# $(cloneobj:.o=.cpp)
$(cloneobj): clone.h $(cloneobj:.o=.cpp)
$(filterHDobj) $(cloneHDobj) $(prefobj): $(.TARGET:.o=.h)
clean:
rm -f ./*.o

0 comments on commit ea35aa7

Please sign in to comment.