CFLAGS += -Wall -DSK98 -O3

all: dumper

dumper: client.o sk98_timers.o
	gcc client.o sk98_timers.o -lm -o dumper

clean:
	rm -f *.o *~ dumper
