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 @@ -28,18 +28,18 @@ 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/*