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.
 
 
 
 

19 lines
602 B

UserInterface.o: lib/UserInterface.cpp lib/UserInterface.hpp
g++ -c lib/UserInterface.cpp -o UserInterface.o
Battle.o: lib/Battle.cpp lib/Battle.hpp
g++ -c lib/Battle.cpp -o Battle.o
Spell.o: lib/Spell.cpp lib/Spell.hpp
g++ -c lib/Spell.cpp -o Spell.o
Character.o: lib/Character.cpp lib/Character.hpp
g++ -c lib/Character.cpp -o Character.o
spell-warz-again-final: Spell.o Character.o UserInterface.o Battle.o main.cpp
g++ main.cpp -o spell-warz-again-final Spell.o Character.o UserInterface.o Battle.o
clean: all
rm Spell.o Character.o UserInterface.o Battle.o
all: spell-warz-again-final