58e25c03395494013032de03317630e411f43bb9
braney
  Mon Mar 28 14:58:35 2011 -0700
fix up makefiles to grok DESTDIR, add blat,gfServer, and gfClient to userApps  #3152
diff --git src/hg/pslPretty/makefile src/hg/pslPretty/makefile
index facaa89..5fd0dcd 100644
--- src/hg/pslPretty/makefile
+++ src/hg/pslPretty/makefile
@@ -1,28 +1,28 @@
 include ../../inc/common.mk
 
 
 L += -lm
 MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkweb.a
 
 O = pslPretty.o
 
 pslPretty: $O $(MYLIBS)
-	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/pslPretty $O $(MYLIBS) $L
+	${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/pslPretty $O $(MYLIBS) $L
 
 test:: testRna testDnax
 
 testRna::
 	${MKDIR} test/output
 	pslPretty -long -axt test/input/rna.psl test/input/hCrea.geno test/input/hCrea.mrna test/output/rna.axt
 
 testDnax::
 	${MKDIR} test/output
 	pslPretty -long -axt test/input/dnax.psl test/input/mCrea.geno test/input/hCrea.geno test/output/dnax.axt
 
 testOld:: 
 	${MKDIR} output
 	pslPretty -long -axt input/test1.psl input/S1.lst input/S2.lst output/test1.axt
 
 clean::
 	rm -f ${O}