Skip to content

Instantly share code, notes, and snippets.

@thirdwing
Created October 8, 2015 00:48
Show Gist options
  • Select an option

  • Save thirdwing/0b55a2d6c5cc71441287 to your computer and use it in GitHub Desktop.

Select an option

Save thirdwing/0b55a2d6c5cc71441287 to your computer and use it in GitHub Desktop.
CFLAGS += -O3 -Wall -pipe -pedantic
CXXFLAGS += -O3 -Wall -pipe -Wno-unused -pedantic
VER=-4.8
CCACHE=ccache
CC=$(CCACHE) gcc$(VER)
CXX=$(CCACHE) g++$(VER)
SHLIB_CXXLD=g++$(VER)
FC=ccache gfortran$(VER)
F77=$(CCACHE) gfortran$(VER)
MAKE=make -j8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment