lc----A tool to count lines of code in C files.
The make file of lc is given as below
SHELL=/bin/sh
CC=cc
# Objects we link together.
OBJ=lc.o get.o
all: $(OBJ)
$(CC) -o lc $(OBJ)
lc.o: lc.c lc.h
get.o: get.c lc.h
I have the source on my desktop. So what should I enter on the shell command line. I have tried /home/desktop/lc/lc.c. It's not running.