62e31071c76e4ed5ef4bc6b0f86b5a011edf803a
markd
  Thu Mar 26 17:33:25 2020 -0400
fixed make clean on os/x where it creates foo.dSYM directories

diff --git src/parasol/makefile src/parasol/makefile
index d4c2c50..83ae444 100644
--- src/parasol/makefile
+++ src/parasol/makefile
@@ -1,45 +1,45 @@
 include ../inc/localEnvironment.mk
 
 ifeq (${DESTDIR},)
   DESTDIR=${HOME}/bin
 endif
 ifeq (${MACHTYPE},)
   MACHTYPE:=$(shell uname -m)
 endif
 ifeq (${BINDIR},)
   BINDIR=${MACHTYPE}
 endif
 
 USE_DIRS = \
 	gensub2 \
 	para \
 	paraHub \
 	paraHubStop \
 	paraNode \
 	paraNodeStart \
 	paraNodeStatus \
 	paraNodeStop \
 	paraTestJob \
 	parasol
 
 all: $(USE_DIRS:%=%.all)
 
 lib.all:
 	mkdir -p bin
 	cd lib && $(MAKE)
 
 # make sure lib is built first, even in a parallel make
 
 %.all: lib.all
 	cd $* && echo $* && $(MAKE)
 
 install:
 	@echo 'parasol install, please copy ./bin/*  where desired ...'
 
 userApps: all
 	rsync -a ./bin/* ${DESTDIR}/${BINDIR}/
 
 clean:
-	rm -f */*.o lib/*/*.a
-	rm -f bin/*
+	rm -fr */*.o lib/*/*.a
+	rm -fr bin/*