Advertisement
Guest User

Untitled

a guest
Feb 10th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.54 KB | None | 0 0
  1. #   CS 2303 PA4
  2. #   Mariana Pachon Puentes
  3.  
  4. all:    qSim
  5.  
  6. CXXFLAGS=   -g -Wall
  7.  
  8. qSim:   qSim.o Event.o CustEvent.o TellEvent.o TellerQueue.o EQNode.o
  9.     g++  qSim
  10.    
  11. Event.o:    Event.cpp Event.h
  12.     g++ $(CXXFLAGS)
  13.  
  14. CustEvent.o:    Event.o CustEvent.cpp CustEvent.h
  15.     g++ $(CXXFLAGS)
  16.  
  17. TellEvent.o:    Event.o TellEvent.cpp TellEvent.h
  18.     g++ $(CXXFLAGS)
  19.  
  20. TellerQueue.o:  CustEvent.o TellerQueue.cpp TellerQueue.h
  21.     g++ $(CXXFLAGS)
  22.  
  23. EQNode.o:   Event.o EQNode.cpp EQNode.h
  24.     g++ $(CXXFLAGS)
  25.  
  26. clean:
  27.     rm -f *.o qSim
  28.     rm -f -r html latex
  29.    
  30. docs:
  31.     doxygen
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement