Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
CC = g++
|
|
CFLAGS =
|
|
|
|
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: Spell.o Character.o main.cpp lib/Character.hpp lib/Spell.hpp
|
|
g++ -static main.cpp -o spell-warz Spell.o Character.o
|
|
|
|
clean:
|
|
rm *.o
|