Add start of C based decoder

This commit is contained in:
James Bowes 2012-07-28 10:51:53 -03:00
parent 427caabb1b
commit a8a7fd57f6
2 changed files with 149 additions and 0 deletions

4
Makefile Normal file
View file

@ -0,0 +1,4 @@
CFLAGS=`pkg-config --libs --cflags zlib`
unpack: unpack.c
gcc -Wall $(CFLAGS) -o unpack unpack.c