# makefile 
# It is used to simplify the compilation
# and linking of the program
CC = cc
CFLAGS = -g 

all: sharfile
sharfile : sharfile.o
	${CC} ${CFLAGS} sharfile.o -o sharfile

clean:
	rm -f *.o *~ *# core a.out sharfile
