Advertisement
mgaikema

Simple makefile

Jul 25th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.15 KB | None | 0 0
  1. all: Main
  2.  
  3. ## Rename the h file as needed
  4. Main: Main.cpp BinaryTree.h
  5.     g++-4.7 -std=c++11 Main.cpp -g -o Main
  6.  
  7. clean:
  8.     rm Main
  9.    
  10. run:
  11.     ./Main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement