232074610513870c470c1263d3c46ff9b4ac3450 hiram Tue Apr 2 17:22:55 2013 -0700 minimal makefiles now in place for kentUtils build refs #9104 diff --git src/hg/rnaStructure/makefile src/hg/rnaStructure/makefile index 72de0b8..542f41a 100644 --- src/hg/rnaStructure/makefile +++ src/hg/rnaStructure/makefile @@ -2,21 +2,24 @@ # Build all directories in makeDb # List of directories to build DIRS = \ hgLoadRnaFold \ rnaFoldBig \ utrFa 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 )