Advertisement
Guest User

Untitled

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