2009-08-28 08:48:21 +02:00

11 lines
235 B
Makefile

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