263f050cacc58a8fc7017c3505588e86e50772d6
hiram
  Fri Mar 14 14:08:50 2014 -0700
correcting mafAddQRows logic and compile error refs @12209
diff --git src/inc/userApp.mk src/inc/userApp.mk
index 4450f6c..257fa88 100644
--- src/inc/userApp.mk
+++ src/inc/userApp.mk
@@ -34,16 +34,16 @@
 compile:: ${DEPLIBS} ${O} ${extraObjects}
 	${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} ${objects} ${LINKLIBS} ${L} -lm
 
 install:: compile
 	rm -f ${DESTDIR}${BINDIR}/${A}${EXE}
 	cp -p ${A}${EXE} ${DESTDIR}${BINDIR}/${A}${EXE}
 	${STRIP} ${A}${EXE} ${DESTDIR}${BINDIR}/${A}${EXE}
 	rm -f ${O} ${A}${EXE}
 
 clean::
 	rm -f ${O} ${extraObjects} ${A}${EXE}
 	@if test -d tests -a -s tests/makefile; then cd tests && ${MAKE} clean; fi
 
 test::
 	@if test -d tests -a -s tests/makefile; then (cd tests && ${MAKE} test); \
-	else echo "# no tests directory in $(CURDIR)"; fi
+	else echo "# no tests directory (or perhaps no tests/makefile) in $(CURDIR)"; fi