Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. prog.exe: main.o student.o stack.o list.o tree.o
  2. g++ main.o student.o stack.o list.o tree.o -lm -o prog.exe
  3. main.o: main.cpp student.h stack.h list.h tree.h
  4. g++ -c main.cpp -lm
  5. student.o: student.cpp student.h stack.h list.h tree.h
  6. g++ -c student.cpp -lm
  7. stack.o: stack.cpp stack.h list.h tree.h
  8. g++ -c stack.cpp -lm
  9. list.o: list.cpp list.h tree.h
  10. g++ -c list.cpp -lm
  11. tree.o: tree.cpp tree.h
  12. g++ -c tree.cpp -lm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement