├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── update-submodules.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── Prefix.pch ├── README.md ├── bin ├── convert_xml_plist.sh ├── deb_build_num.sh ├── denicify.pl ├── dm.pl ├── fakeroot.sh ├── gen-commands.pl ├── install-theos ├── install.copyFile ├── install.exec ├── install.mergeDir ├── logify.pl ├── logos.pl ├── nic.pl ├── nicify.pl ├── package_version.sh ├── post-update ├── swift-bootstrapper.pl ├── update-git-repo └── update-theos ├── extras └── ci │ ├── common.sh │ ├── cygwin-install.cmd │ ├── cygwin-setup.sh │ ├── macos-setup.sh │ └── test-github-projects.sh ├── include └── .keep ├── lib └── .keep ├── makefiles ├── aggregate.mk ├── appex.mk ├── application.mk ├── bundle.mk ├── common.mk ├── framework.mk ├── install │ ├── deb_local.mk │ ├── deb_remote.mk │ ├── none_local.mk │ ├── none_remote.mk │ ├── pkg_local.mk │ ├── pkg_remote.mk │ ├── rpm_local.mk │ └── rpm_remote.mk ├── instance │ ├── appex.mk │ ├── application.mk │ ├── bundle.mk │ ├── framework.mk │ ├── library.mk │ ├── null.mk │ ├── rules.mk │ ├── shared │ │ └── bundle.mk │ ├── simbltweak.mk │ ├── subproject.mk │ ├── tool.mk │ ├── tweak.mk │ └── xcodeproj.mk ├── legacy.mk ├── library.mk ├── master │ ├── aggregate.mk │ ├── appex.mk │ ├── application.mk │ ├── bundle.mk │ ├── framework.mk │ ├── library.mk │ ├── null.mk │ ├── rules.mk │ ├── simbltweak.mk │ ├── subproject.mk │ ├── tool.mk │ ├── tweak.mk │ └── xcodeproj.mk ├── messages.mk ├── null.mk ├── package.mk ├── package │ ├── deb.mk │ ├── ipa.mk │ ├── none.mk │ ├── pkg.mk │ └── rpm.mk ├── platform │ ├── Cygwin.mk │ ├── Darwin.mk │ ├── FreeBSD.mk │ ├── Linux.mk │ └── Windows.mk ├── rules.mk ├── simbltweak.mk ├── stage.mk ├── subproject.mk ├── target.mk ├── targets │ ├── Cygwin │ ├── Darwin │ │ ├── appletv.mk │ │ ├── appletv_simulator.mk │ │ ├── iphone.mk │ │ ├── macosx.mk │ │ ├── native.mk │ │ ├── simulator.mk │ │ ├── watchos.mk │ │ └── watchos_simulator.mk │ ├── Linux │ │ ├── iphone.mk │ │ ├── linux.mk │ │ └── native.mk │ ├── Windows │ │ ├── cygwin.mk │ │ ├── iphone.mk │ │ └── native.mk │ └── _common │ │ ├── cygwin.mk │ │ ├── darwin_head.mk │ │ ├── darwin_tail.mk │ │ ├── iphone.mk │ │ └── linux.mk ├── tool.mk ├── tweak.mk ├── vercmp.mk └── xcodeproj.mk ├── mod └── .keep ├── package.json ├── sdks └── .keep ├── templates └── .keep ├── toolchain └── .keep └── vendor └── mod └── rootless ├── instance ├── framework.mk ├── library.mk └── rules.mk ├── package.mk └── package └── deb.mk /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/update-submodules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/.github/workflows/update-submodules.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/Prefix.pch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/README.md -------------------------------------------------------------------------------- /bin/convert_xml_plist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/convert_xml_plist.sh -------------------------------------------------------------------------------- /bin/deb_build_num.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/deb_build_num.sh -------------------------------------------------------------------------------- /bin/denicify.pl: -------------------------------------------------------------------------------- 1 | ../vendor/nic/bin/denicify.pl -------------------------------------------------------------------------------- /bin/dm.pl: -------------------------------------------------------------------------------- 1 | ../vendor/dm.pl/dm.pl -------------------------------------------------------------------------------- /bin/fakeroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/fakeroot.sh -------------------------------------------------------------------------------- /bin/gen-commands.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/gen-commands.pl -------------------------------------------------------------------------------- /bin/install-theos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/install-theos -------------------------------------------------------------------------------- /bin/install.copyFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/install.copyFile -------------------------------------------------------------------------------- /bin/install.exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/install.exec -------------------------------------------------------------------------------- /bin/install.mergeDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/install.mergeDir -------------------------------------------------------------------------------- /bin/logify.pl: -------------------------------------------------------------------------------- 1 | ../vendor/logos/bin/logify.pl -------------------------------------------------------------------------------- /bin/logos.pl: -------------------------------------------------------------------------------- 1 | ../vendor/logos/bin/logos.pl -------------------------------------------------------------------------------- /bin/nic.pl: -------------------------------------------------------------------------------- 1 | ../vendor/nic/bin/nic.pl -------------------------------------------------------------------------------- /bin/nicify.pl: -------------------------------------------------------------------------------- 1 | ../vendor/nic/bin/nicify.pl -------------------------------------------------------------------------------- /bin/package_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/package_version.sh -------------------------------------------------------------------------------- /bin/post-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/post-update -------------------------------------------------------------------------------- /bin/swift-bootstrapper.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/swift-bootstrapper.pl -------------------------------------------------------------------------------- /bin/update-git-repo: -------------------------------------------------------------------------------- 1 | update-theos -------------------------------------------------------------------------------- /bin/update-theos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/bin/update-theos -------------------------------------------------------------------------------- /extras/ci/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/extras/ci/common.sh -------------------------------------------------------------------------------- /extras/ci/cygwin-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/extras/ci/cygwin-install.cmd -------------------------------------------------------------------------------- /extras/ci/cygwin-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/extras/ci/cygwin-setup.sh -------------------------------------------------------------------------------- /extras/ci/macos-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/extras/ci/macos-setup.sh -------------------------------------------------------------------------------- /extras/ci/test-github-projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/extras/ci/test-github-projects.sh -------------------------------------------------------------------------------- /include/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /makefiles/aggregate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/aggregate.mk -------------------------------------------------------------------------------- /makefiles/appex.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/appex.mk -------------------------------------------------------------------------------- /makefiles/application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/application.mk -------------------------------------------------------------------------------- /makefiles/bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/bundle.mk -------------------------------------------------------------------------------- /makefiles/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/common.mk -------------------------------------------------------------------------------- /makefiles/framework.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/framework.mk -------------------------------------------------------------------------------- /makefiles/install/deb_local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/install/deb_local.mk -------------------------------------------------------------------------------- /makefiles/install/deb_remote.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/install/deb_remote.mk -------------------------------------------------------------------------------- /makefiles/install/none_local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/install/none_local.mk -------------------------------------------------------------------------------- /makefiles/install/none_remote.mk: -------------------------------------------------------------------------------- 1 | none_local.mk -------------------------------------------------------------------------------- /makefiles/install/pkg_local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/install/pkg_local.mk -------------------------------------------------------------------------------- /makefiles/install/pkg_remote.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/install/pkg_remote.mk -------------------------------------------------------------------------------- /makefiles/install/rpm_local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/install/rpm_local.mk -------------------------------------------------------------------------------- /makefiles/install/rpm_remote.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/install/rpm_remote.mk -------------------------------------------------------------------------------- /makefiles/instance/appex.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/appex.mk -------------------------------------------------------------------------------- /makefiles/instance/application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/application.mk -------------------------------------------------------------------------------- /makefiles/instance/bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/bundle.mk -------------------------------------------------------------------------------- /makefiles/instance/framework.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/framework.mk -------------------------------------------------------------------------------- /makefiles/instance/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/library.mk -------------------------------------------------------------------------------- /makefiles/instance/null.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/null.mk -------------------------------------------------------------------------------- /makefiles/instance/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/rules.mk -------------------------------------------------------------------------------- /makefiles/instance/shared/bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/shared/bundle.mk -------------------------------------------------------------------------------- /makefiles/instance/simbltweak.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/simbltweak.mk -------------------------------------------------------------------------------- /makefiles/instance/subproject.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/subproject.mk -------------------------------------------------------------------------------- /makefiles/instance/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/tool.mk -------------------------------------------------------------------------------- /makefiles/instance/tweak.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/tweak.mk -------------------------------------------------------------------------------- /makefiles/instance/xcodeproj.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/instance/xcodeproj.mk -------------------------------------------------------------------------------- /makefiles/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/legacy.mk -------------------------------------------------------------------------------- /makefiles/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/library.mk -------------------------------------------------------------------------------- /makefiles/master/aggregate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/aggregate.mk -------------------------------------------------------------------------------- /makefiles/master/appex.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/appex.mk -------------------------------------------------------------------------------- /makefiles/master/application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/application.mk -------------------------------------------------------------------------------- /makefiles/master/bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/bundle.mk -------------------------------------------------------------------------------- /makefiles/master/framework.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/framework.mk -------------------------------------------------------------------------------- /makefiles/master/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/library.mk -------------------------------------------------------------------------------- /makefiles/master/null.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/null.mk -------------------------------------------------------------------------------- /makefiles/master/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/rules.mk -------------------------------------------------------------------------------- /makefiles/master/simbltweak.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/simbltweak.mk -------------------------------------------------------------------------------- /makefiles/master/subproject.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/subproject.mk -------------------------------------------------------------------------------- /makefiles/master/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/tool.mk -------------------------------------------------------------------------------- /makefiles/master/tweak.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/tweak.mk -------------------------------------------------------------------------------- /makefiles/master/xcodeproj.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/master/xcodeproj.mk -------------------------------------------------------------------------------- /makefiles/messages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/messages.mk -------------------------------------------------------------------------------- /makefiles/null.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/null.mk -------------------------------------------------------------------------------- /makefiles/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/package.mk -------------------------------------------------------------------------------- /makefiles/package/deb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/package/deb.mk -------------------------------------------------------------------------------- /makefiles/package/ipa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/package/ipa.mk -------------------------------------------------------------------------------- /makefiles/package/none.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/package/none.mk -------------------------------------------------------------------------------- /makefiles/package/pkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/package/pkg.mk -------------------------------------------------------------------------------- /makefiles/package/rpm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/package/rpm.mk -------------------------------------------------------------------------------- /makefiles/platform/Cygwin.mk: -------------------------------------------------------------------------------- 1 | include $(THEOS_MAKE_PATH)/platform/Windows.mk -------------------------------------------------------------------------------- /makefiles/platform/Darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/platform/Darwin.mk -------------------------------------------------------------------------------- /makefiles/platform/FreeBSD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/platform/FreeBSD.mk -------------------------------------------------------------------------------- /makefiles/platform/Linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/platform/Linux.mk -------------------------------------------------------------------------------- /makefiles/platform/Windows.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/platform/Windows.mk -------------------------------------------------------------------------------- /makefiles/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/rules.mk -------------------------------------------------------------------------------- /makefiles/simbltweak.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/simbltweak.mk -------------------------------------------------------------------------------- /makefiles/stage.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/stage.mk -------------------------------------------------------------------------------- /makefiles/subproject.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/subproject.mk -------------------------------------------------------------------------------- /makefiles/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/target.mk -------------------------------------------------------------------------------- /makefiles/targets/Cygwin: -------------------------------------------------------------------------------- 1 | Windows -------------------------------------------------------------------------------- /makefiles/targets/Darwin/appletv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Darwin/appletv.mk -------------------------------------------------------------------------------- /makefiles/targets/Darwin/appletv_simulator.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Darwin/appletv_simulator.mk -------------------------------------------------------------------------------- /makefiles/targets/Darwin/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Darwin/iphone.mk -------------------------------------------------------------------------------- /makefiles/targets/Darwin/macosx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Darwin/macosx.mk -------------------------------------------------------------------------------- /makefiles/targets/Darwin/native.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Darwin/native.mk -------------------------------------------------------------------------------- /makefiles/targets/Darwin/simulator.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Darwin/simulator.mk -------------------------------------------------------------------------------- /makefiles/targets/Darwin/watchos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Darwin/watchos.mk -------------------------------------------------------------------------------- /makefiles/targets/Darwin/watchos_simulator.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Darwin/watchos_simulator.mk -------------------------------------------------------------------------------- /makefiles/targets/Linux/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Linux/iphone.mk -------------------------------------------------------------------------------- /makefiles/targets/Linux/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Linux/linux.mk -------------------------------------------------------------------------------- /makefiles/targets/Linux/native.mk: -------------------------------------------------------------------------------- 1 | linux.mk -------------------------------------------------------------------------------- /makefiles/targets/Windows/cygwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Windows/cygwin.mk -------------------------------------------------------------------------------- /makefiles/targets/Windows/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/Windows/iphone.mk -------------------------------------------------------------------------------- /makefiles/targets/Windows/native.mk: -------------------------------------------------------------------------------- 1 | cygwin.mk -------------------------------------------------------------------------------- /makefiles/targets/_common/cygwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/_common/cygwin.mk -------------------------------------------------------------------------------- /makefiles/targets/_common/darwin_head.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/_common/darwin_head.mk -------------------------------------------------------------------------------- /makefiles/targets/_common/darwin_tail.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/_common/darwin_tail.mk -------------------------------------------------------------------------------- /makefiles/targets/_common/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/_common/iphone.mk -------------------------------------------------------------------------------- /makefiles/targets/_common/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/targets/_common/linux.mk -------------------------------------------------------------------------------- /makefiles/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/tool.mk -------------------------------------------------------------------------------- /makefiles/tweak.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/tweak.mk -------------------------------------------------------------------------------- /makefiles/vercmp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/vercmp.mk -------------------------------------------------------------------------------- /makefiles/xcodeproj.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/makefiles/xcodeproj.mk -------------------------------------------------------------------------------- /mod/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/package.json -------------------------------------------------------------------------------- /sdks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolchain/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/mod/rootless/instance/framework.mk: -------------------------------------------------------------------------------- 1 | _THEOS_INTERNAL_LDFLAGS += -dynamiclib -install_name "@rpath/$(_LOCAL_INSTANCE_TARGET)" 2 | -------------------------------------------------------------------------------- /vendor/mod/rootless/instance/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/vendor/mod/rootless/instance/library.mk -------------------------------------------------------------------------------- /vendor/mod/rootless/instance/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/vendor/mod/rootless/instance/rules.mk -------------------------------------------------------------------------------- /vendor/mod/rootless/package.mk: -------------------------------------------------------------------------------- 1 | THEOS_PACKAGE_INSTALL_PREFIX = /var/jb 2 | -------------------------------------------------------------------------------- /vendor/mod/rootless/package/deb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/theos/HEAD/vendor/mod/rootless/package/deb.mk --------------------------------------------------------------------------------