You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
853 B

пре 4 година
пре 4 година
пре 4 година
пре 4 година
пре 4 година
пре 4 година
пре 4 година
  1. CC = g++
  2. UserInterface.o: lib/UserInterface.cpp lib/UserInterface.hpp
  3. g++ -c lib/UserInterface.cpp -o UserInterface.o
  4. BattleInterface.o: lib/BattleInterface.cpp lib/BattleInterface.hpp
  5. g++ -c lib/BattleInterface.cpp -o BattleInterface.o
  6. Spell.o: lib/Spell.cpp lib/Spell.hpp
  7. g++ -c lib/Spell.cpp -o Spell.o
  8. Character.o: lib/Character.cpp lib/Character.hpp
  9. g++ -c lib/Character.cpp -o Character.o
  10. main: Spell.o Character.o UserInterface.o BattleInterface.o main.cpp
  11. g++ main.cpp -o main Spell.o Character.o UserInterface.o BattleInterface.o
  12. clean: Spell.o Character.o UserInterface.o BattleInterface.o
  13. rm Spell.o Character.o UserInterface.o BattleInterface.o
  14. striped: Spell.o Character.o UserInterface.o BattleInterface.o main.cpp
  15. g++ -s main.cpp -o main Spell.o Character.o UserInterface.o BattleInterface.o
  16. all: Spell.o Character.o main