232074610513870c470c1263d3c46ff9b4ac3450
hiram
  Tue Apr 2 17:22:55 2013 -0700
minimal makefiles now in place for kentUtils build refs #9104
diff --git src/hg/txGraph/makefile src/hg/txGraph/makefile
index 3e4fe74..b26ea6b 100644
--- src/hg/txGraph/makefile
+++ src/hg/txGraph/makefile
@@ -1,38 +1,46 @@
 include ../../inc/common.mk
 
 L += -lm
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 
 all:
 	@for D in ${DIRS} x; do \
 	  if test "$$D" != "x" ; then \
 	    ( cd $$D && echo $$D && ${MAKE}  ) ;\
 	    x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
 	    fi ;\
 	done
 
 DIRS = \
     agxToTxg \
     bedToTxEdges \
     txAbFragFind \
     txBedToGraph \
     txOrtho \
     txPslFilter \
     txPslToBed \
     txReadRa \
     txWalk \
     txgAddEvidence \
     txgAnalyze \
     txgGoodEdges \
     txgToAgx \
     txgToXml \
     txgTrim
 
 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