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.

14 lines
328 B

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