bob: bob.o nnls.o
	gcc -g -o bob bob.o nnls.o -lm -lf2c

%.o: %.c
	gcc -g -c $<

clean:
	-rm *.o bob
