add huffman test

This commit is contained in:
optixx
2009-08-28 08:48:21 +02:00
parent b1db3f6ae0
commit 44df97f81a
3 changed files with 704 additions and 0 deletions

10
tools/huffman/Makefile Normal file
View File

@@ -0,0 +1,10 @@
SHELL = sh
OPTIMIZE = -O2
CC = gcc
CSTD = c99
override CFLAGS = -pedantic -std=$(CSTD) -Wall -Wstrict-prototypes $(OPTIMIZE)
all: huffman-decode huffman-encode
clean:
rm -f huffman-decode huffman-encode bin2avrS