Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.54 KB | None | 0 0
  1. HEADERS = hunger.h education.h entertainment.h wc.h illness.h tamagotchi.h
  2.  
  3. tamagotchi: hunger.o education.o entertainment.o wc.o illness.o tamagotchi.o
  4. cc main.cpp -o tamagotchi
  5.  
  6. hunger.o: $(HEADERS)
  7. cc hunger.cpp -o hunger.o
  8.  
  9. education.o: $(HEADERS)
  10. cc education.cpp -o education.o
  11.  
  12. entertainment.o: $(HEADERS)
  13. cc entertainment.cpp -o entertainment.o
  14.  
  15. illness.o: $(HEADERS)
  16. cc illness.cpp -o illness.o
  17.  
  18. wc.o: $(HEADERS)
  19. cc wc.cpp -o wc.o
  20.  
  21. tamagotchi.o: $(HEADERS)
  22. cc tamagotchi.cpp -o tamagotchi.o
  23.  
  24. clean: rm -rf *.o tamagotchi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement