Advertisement
Guest User

so2_p1_makefile

a guest
Mar 19th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.19 KB | None | 0 0
  1. all: projekt1.o
  2.     g++ -std=c++11 -pthread projekt1.o -o projekt1.out -lncursesw
  3.  
  4. projekt.o: projekt1.cpp
  5.     g++ -std=c++11 -pthread projekt1.cpp -c -o projekt1.o -lncursesw
  6.  
  7. clean:
  8.     rm -f *.o
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement