Annotation For Makefile

Origin for each line in Makefile from check-in 77d5262842:

77d5262842 2019-09-16    1: CPPFLAGS := -I. -DUSE_TCL_STUBS=1 -DXVFS_MODE_FLEXIBLE -DXVFS_DEBUG $(XVFS_ADD_CPPFLAGS)
77d5262842 2019-09-16    2: CFLAGS   := -fPIC -g3 -ggdb3 -Wall $(XVFS_ADD_CFLAGS)
77d5262842 2019-09-16    3: LDFLAGS  := $(XVFS_ADD_LDFLAGS)
9bcf758fef 2019-05-08    4: LIBS     := -ltclstub8.6
5583d77f1c 2019-09-14    5: TCLSH    := tclsh
e5b6962adf 2019-05-02    6: 
0a9369ff13 2019-05-02    7: all: example.so
0a9369ff13 2019-05-02    8: 
e90770a5a7 2019-05-02    9: example.c: $(shell find example -type f) $(shell find lib -type f) xvfs.c.rvt xvfs-create Makefile
0a9369ff13 2019-05-02   10: 	./xvfs-create --directory example --name example > example.c.new
0a9369ff13 2019-05-02   11: 	mv example.c.new example.c
0a9369ff13 2019-05-02   12: 
b8cca3a6b4 2019-05-08   13: example.o: example.c xvfs-core.h xvfs-core.c Makefile
e5b6962adf 2019-05-02   14: 	$(CC) $(CPPFLAGS) $(CFLAGS) -o example.o -c example.c
e5b6962adf 2019-05-02   15: 
b8cca3a6b4 2019-05-08   16: example.so: example.o Makefile
b8cca3a6b4 2019-05-08   17: 	$(CC) $(CFLAGS) $(LDFLAGS) -shared -o example.so example.o $(LIBS)
e5b6962adf 2019-05-02   18: 
d80c88cee0 2019-09-16   19: # xvfs-create-standalone is a standalone (i.e., no external dependencies
d80c88cee0 2019-09-16   20: # like lib/minirivet, xvfs-core.c, etc) version of "xvfs-create"
d80c88cee0 2019-09-16   21: xvfs-create-standalone: $(shell find lib -type f) xvfs-create xvfs-core.c xvfs-core.h xvfs.c.rvt
d80c88cee0 2019-09-16   22: 	rm -f xvfs-create-standalone.new xvfs-create-standalone
d80c88cee0 2019-09-16   23: 	./xvfs-create --dump-tcl --remove-debug > xvfs-create-standalone.new
d80c88cee0 2019-09-16   24: 	chmod +x xvfs-create-standalone.new
d80c88cee0 2019-09-16   25: 	mv xvfs-create-standalone.new xvfs-create-standalone
d80c88cee0 2019-09-16   26: 
f74a2e47ab 2019-05-02   27: test: example.so
5583d77f1c 2019-09-14   28: 	rm -f __test__.tcl
5583d77f1c 2019-09-14   29: 	echo 'if {[catch { load ./example.so Xvfs_example; source //xvfs:/example/main.tcl }]} { puts stderr $$::errorInfo; exit 1 }; exit 0' > __test__.tcl
d80c88cee0 2019-09-16   30: 	$(GDB) $(TCLSH) __test__.tcl $(TCL_TEST_ARGS)
5583d77f1c 2019-09-14   31: 	rm -f __test__.tcl
d80c88cee0 2019-09-16   32: 
77d5262842 2019-09-16   33: coverage:
77d5262842 2019-09-16   34: 	$(MAKE) clean
77d5262842 2019-09-16   35: 	$(MAKE) example.so XVFS_ADD_CFLAGS=-coverage XVFS_ADD_LDFLAGS=-coverage
77d5262842 2019-09-16   36: 	$(MAKE) test
77d5262842 2019-09-16   37: 	rm -f xvfs-test-coverage.info
77d5262842 2019-09-16   38: 	lcov --capture --directory . --output-file xvfs-test-coverage.info
77d5262842 2019-09-16   39: 	rm -rf xvfs-test-coverage
77d5262842 2019-09-16   40: 	mkdir xvfs-test-coverage
77d5262842 2019-09-16   41: 	genhtml xvfs-test-coverage.info --output-directory xvfs-test-coverage
77d5262842 2019-09-16   42: 	rm -f xvfs-test-coverage.info
77d5262842 2019-09-16   43: 
0a9369ff13 2019-05-02   44: clean:
d80c88cee0 2019-09-16   45: 	rm -f xvfs-create-standalone.new xvfs-create-standalone
aa32555a0a 2019-06-22   46: 	rm -f example.c example.c.new
aa32555a0a 2019-06-22   47: 	rm -f example.so example.o
77d5262842 2019-09-16   48: 	rm -f example.gcda example.gcno
5583d77f1c 2019-09-14   49: 	rm -f __test__.tcl
77d5262842 2019-09-16   50: 	rm -f xvfs-test-coverage.info
77d5262842 2019-09-16   51: 	rm -rf xvfs-test-coverage
0a9369ff13 2019-05-02   52: 
0a9369ff13 2019-05-02   53: distclean: clean
0a9369ff13 2019-05-02   54: 
77d5262842 2019-09-16   55: .PHONY: all clean distclean test coverage