d156dc9e9c0f2cf8971bfa4d8ab777d43f743e7a
kent
  Mon Jun 12 10:03:01 2017 -0700
Adding tabToHtml to build.

diff --git src/tabFile/makefile src/tabFile/makefile
index 142ea5a..0357b32 100644
--- src/tabFile/makefile
+++ src/tabFile/makefile
@@ -1,34 +1,35 @@
 # Build all directories in tabFiles
 
 kentSrc = ..
 
 include ${kentSrc}/inc/localEnvironment.mk
 include ${kentSrc}/inc/common.mk
 
 # note: lists such as the following need to be defined *before*
 # they are used in the wildcard target rules.  An oddity of gnu make
 
 # List of all directories to build
 
 ALL_APPS = \
 	tabInfo \
 	tabQuery \
-	tabRepeatedFieldsToArrayField
+	tabRepeatedFieldsToArrayField \
+	tabToHtml
 
 all: $(ALL_APPS:%=%.all)
 
 %.all:
 	cd $* && echo $* && $(MAKE)
 
 test: $(ALL_APPS:%=%.test)
 
 %.test:
 	@test -s $*/tests/makefile && (echo $*; cd $* && $(MAKE) test) || true
 
 clean: $(ALL_APPS:%=%.clean)
 	touch non-empty-rm.o
 	- find . -name \*.o -print | xargs rm
 
 %.clean:
 	cd $* && echo $* && $(MAKE) clean