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
@@ -22,15 +22,20 @@
     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 )