1644ff10f18d0d48c0b0ff8b0c7bf09dcd3502c6
hiram
  Fri Apr 26 22:23:18 2013 -0700
add parasol to the build utils list (but certainly *not* installed !) so errors can be caught, refs #9104
diff --git src/makefile src/makefile
index ecee58b..84e4a8a 100644
--- src/makefile
+++ src/makefile
@@ -133,30 +133,31 @@
 	etags ${LIB_TAGS_IN}
 
 # build tags for all files
 .PHONY: tags-all
 tags-all:
 	find . -name '*.[ch]' | ctags -L -
 
 # build emacs tags for all files
 .PHONY: etags-all
 etags-all:
 	find . -name '*.[ch]' | etags -
 
 utils: libs
 	${MKDIR} ${SCRIPTS}
 	${MKDIR} ${DESTDIR}${BINDIR}
+	cd parasol && ${MAKE}
 	@for D in ${DIRS} x; do \
             if test "$$D" != "x" ; then \
                 ( cd $$D && echo $$D && ${MAKE} ) ;\
                 x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
             fi ;\
 	done
 	cd utils && ${MAKE}
 	cd hg && ${MAKE} utils
 
 utils-alpha: libs
 	@for D in ${DIRS} x; do \
             if test "$$D" != "x" ; then \
                 ( cd $$D && echo $$D && ${MAKE} ) ;\
                 x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
             fi ;\