CC = gcc
CFLAGS = -Wall -O2 # -pedantic

all: cddetect

clean:
	-rm -f cddetect *~ core
