diff --git a/examples/Makefile b/examples/Makefile index 756d82d..444e135 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -7,7 +7,7 @@ all: examples #--------------------------------------------------------------------------------- @rm -fr bin @mkdir -p bin - @find . -name "*.3dsx" -exec cp -fv {} bin \; + @find . -name "*.3dsx" ! -path "./bin/*" -exec cp -fv {} bin \; examples: @for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;