CCC=CC
PRJ=ftest
OBJS= mymath.o  myio.o fraction.o fracTest.o
$(PRJ): $(OBJS)                    # tab is at beginning of next line
	$(CCC) $(OBJS) -o $(PRJ)
$(OBJS): mymath.h myio.h fraction.h

clean:
	/usr/bin/rm -f $(OBJS) $(PRJ)
	/usr/bin/rm -f *~ *% *# .#*
	/usr/bin/rm -rf SunWS_cache/

