ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
21 lines
764 B
Batchfile
21 lines
764 B
Batchfile
@ECHO OFF
|
|
MKDIR bin\dll bin\static bin\example bin\include
|
|
COPY tests\fullbench.c bin\example\
|
|
COPY programs\datagen.c bin\example\
|
|
COPY programs\datagen.h bin\example\
|
|
COPY programs\util.h bin\example\
|
|
COPY programs\platform.h bin\example\
|
|
COPY lib\common\mem.h bin\example\
|
|
COPY lib\common\zstd_internal.h bin\example\
|
|
COPY lib\common\error_private.h bin\example\
|
|
COPY lib\common\xxhash.h bin\example\
|
|
COPY lib\libzstd.a bin\static\libzstd_static.lib
|
|
COPY lib\dll\libzstd.* bin\dll\
|
|
COPY lib\dll\example\Makefile bin\example\
|
|
COPY lib\dll\example\fullbench-dll.* bin\example\
|
|
COPY lib\dll\example\README.md bin\
|
|
COPY lib\zstd.h bin\include\
|
|
COPY lib\common\zstd_errors.h bin\include\
|
|
COPY lib\dictBuilder\zdict.h bin\include\
|
|
COPY programs\zstd.exe bin\zstd.exe
|