Annotation For Makefile

Lines of Makefile from check-in 69e476dcd5 that are changed by the sequence of edits moving toward check-in e5b6962adf:

                         1: all: example.so
                         2: 
                         3: example.c: $(shell find example -type f) $(shell find lib -type f) xvfs.c.rvt xvfs-create Makefile
                         4: 	./xvfs-create --directory example --name example > example.c.new
                         5: 	mv example.c.new example.c
                         6: 
                         7: example.o: example.c xvfs-core.h Makefile
69e476dcd5 2019-05-02    8: 	cc -fPIC -Wall -I. -o example.o -c example.c
                         9: 
                        10: xvfs-core.o: xvfs-core.c xvfs-core.h Makefile
69e476dcd5 2019-05-02   11: 	cc -fPIC -Wall -I. -o xvfs-core.o -c xvfs-core.c
                        12: 
                        13: example.so: example.o xvfs-core.o Makefile
69e476dcd5 2019-05-02   14: 	cc -fPIC -shared -o example.so example.o xvfs-core.o
                        15: 
                        16: test: example.so
69e476dcd5 2019-05-02   17: 	echo 'load ./example.so Xvfs_example; puts OK' | tclsh | grep '^OK$$'
                        18: 
                        19: clean:
                        20: 	rm -f example.so example.o example.c
                        21: 
                        22: distclean: clean
                        23: 
                        24: .PHONY: all clean distclean test