Annotation For Makefile

Origin for each line in Makefile from check-in b8cca3a6b4:

88f96696b7 2019-05-03    1: CPPFLAGS := -I. -DUSE_TCL_STUBS=1 -DXVFS_MODE_FLEXIBLE
e5b6962adf 2019-05-02    2: CFLAGS   := -fPIC -g3 -ggdb3 -Wall
e5b6962adf 2019-05-02    3: LDFLAGS  :=
9bcf758fef 2019-05-08    4: LIBS     := -ltclstub8.6
e5b6962adf 2019-05-02    5: 
0a9369ff13 2019-05-02    6: all: example.so
0a9369ff13 2019-05-02    7: 
e90770a5a7 2019-05-02    8: example.c: $(shell find example -type f) $(shell find lib -type f) xvfs.c.rvt xvfs-create Makefile
0a9369ff13 2019-05-02    9: 	./xvfs-create --directory example --name example > example.c.new
0a9369ff13 2019-05-02   10: 	mv example.c.new example.c
0a9369ff13 2019-05-02   11: 
b8cca3a6b4 2019-05-08   12: example.o: example.c xvfs-core.h xvfs-core.c Makefile
e5b6962adf 2019-05-02   13: 	$(CC) $(CPPFLAGS) $(CFLAGS) -o example.o -c example.c
e5b6962adf 2019-05-02   14: 
b8cca3a6b4 2019-05-08   15: example.so: example.o Makefile
b8cca3a6b4 2019-05-08   16: 	$(CC) $(CFLAGS) $(LDFLAGS) -shared -o example.so example.o $(LIBS)
e90770a5a7 2019-05-02   17: 
f74a2e47ab 2019-05-02   18: test: example.so
d121970301 2019-05-02   19: 	echo 'if {[catch { load ./example.so Xvfs_example; source //xvfs:/example/main.tcl }]} { puts stderr $$::errorInfo; exit 1 }; exit 0' | tclsh
0a9369ff13 2019-05-02   20: 
0a9369ff13 2019-05-02   21: clean:
0a9369ff13 2019-05-02   22: 	rm -f example.so example.o example.c
0a9369ff13 2019-05-02   23: 
0a9369ff13 2019-05-02   24: distclean: clean
0a9369ff13 2019-05-02   25: 
0a9369ff13 2019-05-02   26: .PHONY: all clean distclean test