├── .github └── workflows │ └── c-cpp.yml ├── LICENSE.md ├── README.md ├── deploy.sh ├── make-portable.desktop ├── make-portable.png ├── make-portable.sh └── preloads ├── Makefile ├── libexec.c └── libunion.c /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/deploy.sh -------------------------------------------------------------------------------- /make-portable.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/make-portable.desktop -------------------------------------------------------------------------------- /make-portable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/make-portable.png -------------------------------------------------------------------------------- /make-portable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/make-portable.sh -------------------------------------------------------------------------------- /preloads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/preloads/Makefile -------------------------------------------------------------------------------- /preloads/libexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/preloads/libexec.c -------------------------------------------------------------------------------- /preloads/libunion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanael-b/make-portable/HEAD/preloads/libunion.c --------------------------------------------------------------------------------