cf27523eef7f7691c996dfe2ba07ef504f653362
markd
  Mon Aug 30 13:19:37 2010 -0700
fixed broken rule, not sure why this was even working
diff --git src/hg/pslMap/makefile src/hg/pslMap/makefile
index 4d36483..70fb717 100644
--- src/hg/pslMap/makefile
+++ src/hg/pslMap/makefile
@@ -1,34 +1,34 @@
 include ../../inc/common.mk
 
 MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS = $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
 L += -lm
 
 A = pslMap
 O = pslMap.o
 
 all: ${BINDIR}/pslMap
 
 
-pslMap: ${O} ${MYLIBS}
+${BINDIR}/pslMap: ${O} ${MYLIBS}
 	${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L}
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
 pslMap.o: usage.msg
 
 # create usage msg from text
 usage.msg: usage.txt
 	echo '/* GENERATED CODE, DO NOT EDIT */' > $@.tmp
 	${STRINGIFY} $< >> $@.tmp
 	mv -f $@.tmp $@
 
 compile:: ${O} usage.msg
 	${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O ${MYLIBS} ${L}
 
 test:: compile
 	(cd tests && ${MAKE} test)
 	rm -f ${A}${EXE}
 
 clean::
 	rm -f ${A} ${O} usage.msg
 	(cd tests && ${MAKE} clean)