09a6f99f4526258b68970ab06299eb93469489a4
hiram
  Tue Mar 8 15:46:29 2011 -0800
eliminate use of HOME in MYLIBDIR
diff --git src/oneShot/test/makefile src/oneShot/test/makefile
index 939179d..7f99b75 100644
--- src/oneShot/test/makefile
+++ src/oneShot/test/makefile
@@ -1,14 +1,14 @@
 include ../../inc/common.mk
 
 L += -lm
-MYLIBDIR = $(HOME)/src/lib/$(MACHTYPE)
+MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkweb.a
 
 O = test.o
 
 test: $O $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o test $O $(MYLIBS) $L
 #	${STRIP} test${EXE}
 
 clean::
 	rm -f ${O}