232074610513870c470c1263d3c46ff9b4ac3450
hiram
  Tue Apr 2 17:22:55 2013 -0700
minimal makefiles now in place for kentUtils build refs #9104
diff --git src/hg/txGene/makefile src/hg/txGene/makefile
index b57a560..064dc49 100644
--- src/hg/txGene/makefile
+++ src/hg/txGene/makefile
@@ -15,22 +15,30 @@
 DIRS = \
 	txGenbankData \
 	txGeneAccession \
 	txGeneAlias \
 	txGeneAltProt \
 	txGeneCanonical \
 	txGeneCdsMap \
 	txGeneColor \
 	txGeneExplainUpdate1 \
 	txGeneFromBed \
 	txGeneProtAndRna \
 	txGeneSeparateNoncoding \
 	txGeneValidation \
 	txGeneXref
 
-clean:
+clean::
 	@for D in ${DIRS} x; do \
 	  if test "$$D" != "x" ; then \
 	    ( cd $$D && echo $$D && ${MAKE} clean ) ;\
 	    x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
 	    fi ;\
 	done
+
+compile:
+	@for D in ${DIRS} x; do \
+	  if test "$$D" != "x" ; then \
+	    ( cd $$D && echo $$D && ${MAKE} compile ) ;\
+	    x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
+	    fi ;\
+	done