232074610513870c470c1263d3c46ff9b4ac3450
hiram
  Tue Apr 2 17:22:55 2013 -0700
minimal makefiles now in place for kentUtils build refs #9104
diff --git src/hg/txCds/makefile src/hg/txCds/makefile
index 733fa33..7f83a7d 100644
--- src/hg/txCds/makefile
+++ src/hg/txCds/makefile
@@ -1,36 +1,41 @@
 # Build txGraph source
 include ../../inc/common.mk
 
 # List of directories to build
 DIRS = \
     txCdsBadBed \
     txCdsCluster \
     txCdsEvFromBed \
     txCdsEvFromBorf \
     txCdsEvFromProtein \
     txCdsEvFromRna \
     txCdsGoodBed \
     txCdsOrfInfo \
     txCdsOrtho \
     txCdsPick \
     txCdsPredict \
     txCdsRaExceptions \
     txCdsRefBestEvOnly \
     txCdsRepick \
     txCdsSuspect \
     txCdsSvmInput \
     txCdsToGene \
     txCdsWeed \
     txInfoAssemble
 
 USE_DIRS = $(DIRS)
 
 all: $(USE_DIRS:%=%.all)
 
 %.all:
 	( cd $* && echo $* && $(MAKE) )
 
 clean:: $(USE_DIRS:%=%.clean)
 
 %.clean::
 	( cd $* && echo $* && $(MAKE) clean )
+
+compile:: $(USE_DIRS:%=%.compile)
+
+%.compile::
+	( cd $* && echo $* && $(MAKE) compile )