Kaynağa Gözat

make now compile as static executable

master
myitinos 4 yıl önce
ebeveyn
işleme
8e6c031ecb
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. +3
    -3
      Makefile

+ 3
- 3
Makefile Dosyayı Görüntüle

@ -12,11 +12,11 @@ Spell.o: lib/Spell.cpp lib/Spell.hpp
Character.o: lib/Character.cpp lib/Character.hpp
g++ -c lib/Character.cpp -o Character.o
spell-warz: Spell.o Character.o UserInterface.o BattleInterface.o main.cpp
g++ main.cpp -o spell-warz Spell.o Character.o UserInterface.o BattleInterface.o
spell-warz: Spell.o Character.o UserInterface.o BattleInterface.o main.cpp
g++ -static main.cpp -o spell-warz Spell.o Character.o UserInterface.o BattleInterface.o
clean: Spell.o Character.o UserInterface.o BattleInterface.o
rm Spell.o Character.o UserInterface.o BattleInterface.o
spell-warz-striped: Spell.o Character.o UserInterface.o BattleInterface.o main.cpp
g++ -s main.cpp -o spell-warz Spell.o Character.o UserInterface.o BattleInterface.o
g++ -static -s main.cpp -o spell-warz Spell.o Character.o UserInterface.o BattleInterface.o

Yükleniyor…
İptal
Kaydet