CC = cc

files = main.o QR.o

main: $(files)
	cc -o main $(files) -lm

clean:
	rm -f core main $(files)
