opening TIC-80 sources

This commit is contained in:
BADIM-PC\Vadim
2017-09-26 09:59:34 +03:00
parent b003d8f56f
commit e502b89a1d
325 changed files with 186092 additions and 11 deletions

18
tools/bin2txt/makefile Normal file
View File

@@ -0,0 +1,18 @@
OPT=-O3 -Wall -std=c99
SRC=bin2txt.c
INCLUDE=-I../include/zlib
LIB=-lz
all: windows
windows: $(SRC)
gcc $(OPT) $(SRC) $(INCLUDE) -L../../lib/mingw $(LIB) -o bin2txt.exe
linux32: $(SRC)
gcc $(OPT) $(SRC) $(INCLUDE) -L../../lib/linux32 $(LIB) -o bin2txt
linux64: $(SRC)
gcc $(OPT) $(SRC) $(INCLUDE) -L../../lib/linux $(LIB) -o bin2txt
macosx: $(SRC)
gcc $(OPT) $(SRC) $(INCLUDE) -L../../lib/macos $(LIB) -o bin2txt