Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.25 KB | None | 0 0
  1. all: chess
  2.  
  3. chess: chess+.o chesslib.o figure.o
  4.     g++ chess+.o chesslib.o figure.o -o chess
  5. chess+.o: chess+.cpp
  6.     g++ -c chess+.cpp
  7. chesslib.o: chesslib.cc
  8.     g++ -c chesslib.cc
  9. figure.o: figure.cc
  10.     g++ -c figure.cc
  11. clean:
  12.     rm -rf *.o chess
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement