09a6f99f4526258b68970ab06299eb93469489a4
hiram
  Tue Mar 8 15:46:29 2011 -0800
eliminate use of HOME in MYLIBDIR
diff --git src/oneShot/findContigsWithClones/makefile src/oneShot/findContigsWithClones/makefile
index 5ef6d94..2ab0574 100644
--- src/oneShot/findContigsWithClones/makefile
+++ src/oneShot/findContigsWithClones/makefile
@@ -1,14 +1,14 @@
 include ../../inc/common.mk
 
 
 L += -lm
-MYLIBDIR = $(HOME)/src/lib/$(MACHTYPE)
+MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
 
 O = findContigsWithClones.o
 
 findContigsWithClones: $O $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/findContigsWithClones $O $(MYLIBS) $L
 
 clean::
 	rm -f ${O}