├── .gitignore ├── LICENSE ├── README.md ├── dokany ├── mkbuild └── toolchain │ ├── i686-w64-mingw32.cmake │ └── x86_64-w64-mingw32.cmake ├── fuse-nfs ├── dpa.target ├── mkbuild └── normal.target ├── libnfs └── mkbuild └── mkbuild /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/README.md -------------------------------------------------------------------------------- /dokany/mkbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/dokany/mkbuild -------------------------------------------------------------------------------- /dokany/toolchain/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/dokany/toolchain/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /dokany/toolchain/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/dokany/toolchain/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /fuse-nfs/dpa.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/fuse-nfs/dpa.target -------------------------------------------------------------------------------- /fuse-nfs/mkbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/fuse-nfs/mkbuild -------------------------------------------------------------------------------- /fuse-nfs/normal.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/fuse-nfs/normal.target -------------------------------------------------------------------------------- /libnfs/mkbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/libnfs/mkbuild -------------------------------------------------------------------------------- /mkbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Abrecht/fuse-nfs-crossbuild-scripts/HEAD/mkbuild --------------------------------------------------------------------------------