Skip to content

Instantly share code, notes, and snippets.

@basicxman
Created July 29, 2011 01:55
Show Gist options
  • Select an option

  • Save basicxman/1112979 to your computer and use it in GitHub Desktop.

Select an option

Save basicxman/1112979 to your computer and use it in GitHub Desktop.
CPP = clang++
OUTPUT = dijkstra
CPPFLAGS = -stdlib=libc++ \
-IGraph \
-IDataStructures \
-o $(OUTPUT)
INPUTFILES = Graph/DijkstraPQ.cpp Graph/Graph.cpp DataStructures/PriorityQueue.cpp
main:
$(CPP) $(CPPFLAGS) $(INPUTFILES)
clean:
rm -f $(OUTPUT)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment