# This is the only configurable option!

CC 		= gcc
CFLAGS 		= -Wall -g

TARGET	= cdrwtool
SRC	= cdrwtool.c

all: $(TARGET)

clean:
	rm -f *.o *~ core $(TARGET)
