0829e45130c304f0a15c2f24e84ea22fe59984df
hiram
  Mon May 20 13:59:50 2013 -0700
get stringify built before everything else refs #9104
diff --git src/utils/makefile src/utils/makefile
index 9baed70..b27bb0e 100644
--- src/utils/makefile
+++ src/utils/makefile
@@ -2,33 +2,33 @@
 
 include ../inc/common.mk
 
 # all: builds all utilities here
 
 all:    
 	@for D in $(USE_DIRS) x; do \
 	  if test "$$D" != "x" ; then \
 	    ( cd $$D && echo $$D && $(MAKE) ) ;\
 	    x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
 	    fi ;\
 	done
 
 # userApps: builds on user application specific programs
 
-userApps: $(UTILS_APPLIST:%=%.uApp)
+userApps: $(UTILS_APPLIST:%=%.userApps)
 
-%.uApp:
+%.userApps:
 	( cd $* && echo $* && $(MAKE) )
 
 scripts:
 	@for F in ${SCRIPT_FILES}; do \
 	    chmod +x $$F; \
 	    rm -f ${SCRIPTS}/$${F}; \
 	    echo cp -p $$F ${SCRIPTS}; \
 	    cp -p $$F ${SCRIPTS}; \
 	 done
 	chmod +x genePredToBed/genePredToBed;
 	rm -f ${SCRIPTS}/genePredToBed;
 	echo cp -p genePredToBed/genePredToBed ${SCRIPTS};
 	@cp -p genePredToBed/genePredToBed ${SCRIPTS};
 
 alpha: scripts all