
TARGETS=osc.o
targets: ${TARGETS}
clean:
	rm -f ${TARGETS}

osc.o: osc.c osc.h
	gcc -g -Wall -c -o osc.o osc.c

