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.

13 lines
316 B

4 years ago
4 years ago
4 years ago
  1. Spell.o: lib/Spell.cpp lib/Spell.hpp
  2. g++ -c lib/Spell.cpp -o Spell.o
  3. Character.o: lib/Character.cpp lib/Character.hpp
  4. g++ -c lib/Character.cpp -o Character.o
  5. spell-warz: Spell.o Character.o main.cpp lib/Character.hpp lib/Spell.hpp
  6. g++ main.cpp -o spell-warz Spell.o Character.o
  7. all: spell-warz
  8. clean:
  9. rm *.o