Change to TUI

This commit is contained in:
xypwn
2020-05-04 22:22:40 +02:00
parent 88925a84d0
commit 79928d3342
2 changed files with 39 additions and 23 deletions

View File

@@ -5,11 +5,11 @@ CXXFLAGS=-lz -O2 -static
# Output file extension (for example .exe for Windows)
O_EXT=
gd_crypt: Main.cpp Base64.hpp GDGameSave.hpp
$(CXX) -o $@$(O_EXT) $^ $(CXXFLAGS)
gd_crypt$(O_EXT): Main.cpp Base64.hpp GDGameSave.hpp
$(CXX) -o $@ $^ $(CXXFLAGS)
xcomp_linux_win:
make CXX=x86_64-w64-mingw32-g++ O_EXT=.exe
clean:
rm ./gd_decr
rm ./gd_crypt