72d331125b6436857a882ac41a4588810da20651
kent
  Fri May 26 14:36:55 2017 -0700
Adding new utility to collapse fields with same name into a single comma-separated field.

diff --git src/tabFile/makefile src/tabFile/makefile
index fcb9365..142ea5a 100644
--- src/tabFile/makefile
+++ src/tabFile/makefile
@@ -1,32 +1,34 @@
 # 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 = \
-	tabQuery 
+	tabInfo \
+	tabQuery \
+	tabRepeatedFieldsToArrayField
 
 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