1@ECHO OFF 2MKDIR bin\dll bin\static bin\example bin\include 3COPY tests\fullbench.c bin\example\ 4COPY programs\datagen.c bin\example\ 5COPY programs\datagen.h bin\example\ 6COPY programs\util.h bin\example\ 7COPY programs\platform.h bin\example\ 8COPY lib\common\mem.h bin\example\ 9COPY lib\common\zstd_internal.h bin\example\ 10COPY lib\common\error_private.h bin\example\ 11COPY lib\common\xxhash.h bin\example\ 12COPY lib\libzstd.a bin\static\libzstd_static.lib 13COPY lib\dll\libzstd.* bin\dll\ 14COPY lib\dll\example\Makefile bin\example\ 15COPY lib\dll\example\fullbench-dll.* bin\example\ 16COPY lib\dll\example\README.md bin\ 17COPY lib\zstd.h bin\include\ 18COPY lib\common\zstd_errors.h bin\include\ 19COPY lib\dictBuilder\zdict.h bin\include\ 20COPY programs\zstd.exe bin\zstd.exe 21