Error when Making statsprocessor
#1
I get this error message:

f14@f14-Precision-WorkStation-T7500:~$ make -f '/home/f14/Downloads/statsprocessor-master/src/sp.c' 

/home/f14/Downloads/statsprocessor-master/src/sp.c:13: *** missing separator.  Stop.

Any suggestions on how to fix this? Thanks.
#2
That's not how make works. You're telling it to use sp.c as a makefile, which clearly won't work.

What you probably want to do is:

Code:
cd /home/f14/Downloads/statsprocessor-master/src/
make
#3
(12-24-2015, 08:21 PM)epixoip Wrote: That's not how make works. You're telling it to use sp.c as a makefile, which clearly won't work.

What you probably want to do is:

Code:
cd /home/f14/Downloads/statsprocessor-master/src/
make

Exactly right. Thank you very much.