Skip to content

Instantly share code, notes, and snippets.

@Daiver
Created May 18, 2013 10:58
Show Gist options
  • Save Daiver/5604052 to your computer and use it in GitHub Desktop.
Save Daiver/5604052 to your computer and use it in GitHub Desktop.
CXX = g++
#CXX = clang++
Options = -O3 -std=c++11
LIBS =
main: main.cc hashtable.h test.o
$(CXX) -o main main.cc test.o $(LIBS) $(Options)
rm *.o
test.o: test.cpp
$(CXX) -c -o test.o test.cpp $(Options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment