CC=gcc
CLIB=-lm

all: dct

dct: dct.c
	$(CC) dct.c -o dct $(CLIB)

clean:
	/bin/rm -f dct

