├── .gitignore ├── Makefile ├── control ├── fauxsu.cc ├── fauxsu.info ├── fauxsu.sh.in ├── test.c ├── test.sh └── theos ├── Prefix.pch ├── bin ├── deb_build_num.sh ├── fakeroot.sh ├── install.copyFile ├── install.exec ├── install.mergeDir ├── package_version.sh ├── target.pl └── vercmp.pl ├── lib └── .keep └── makefiles ├── common.mk ├── install ├── deb_local.mk ├── deb_remote.mk ├── none_local.mk └── none_remote.mk ├── instance ├── library.mk ├── rules.mk └── tool.mk ├── legacy.mk ├── library.mk ├── master ├── library.mk ├── rules.mk └── tool.mk ├── messages.mk ├── package.mk ├── package ├── deb.mk └── none.mk ├── platform ├── Darwin-arm.mk ├── Darwin.mk └── Linux.mk ├── rules.mk ├── stage.mk ├── targets ├── Darwin-arm │ ├── iphone.mk │ └── native.mk ├── Darwin │ ├── iphone.mk │ ├── macosx.mk │ ├── native.mk │ └── simulator.mk ├── Linux │ ├── iphone.mk │ ├── linux.mk │ └── native.mk └── _common │ ├── darwin.mk │ ├── darwin_flat_bundle.mk │ ├── darwin_hierarchial_bundle.mk │ └── linux.mk └── tool.mk /.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | obj 3 | *.deb 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/Makefile -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/control -------------------------------------------------------------------------------- /fauxsu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/fauxsu.cc -------------------------------------------------------------------------------- /fauxsu.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/fauxsu.info -------------------------------------------------------------------------------- /fauxsu.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/fauxsu.sh.in -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/test.c -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/test.sh -------------------------------------------------------------------------------- /theos/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/Prefix.pch -------------------------------------------------------------------------------- /theos/bin/deb_build_num.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/bin/deb_build_num.sh -------------------------------------------------------------------------------- /theos/bin/fakeroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/bin/fakeroot.sh -------------------------------------------------------------------------------- /theos/bin/install.copyFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/bin/install.copyFile -------------------------------------------------------------------------------- /theos/bin/install.exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/bin/install.exec -------------------------------------------------------------------------------- /theos/bin/install.mergeDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/bin/install.mergeDir -------------------------------------------------------------------------------- /theos/bin/package_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/bin/package_version.sh -------------------------------------------------------------------------------- /theos/bin/target.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/bin/target.pl -------------------------------------------------------------------------------- /theos/bin/vercmp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/bin/vercmp.pl -------------------------------------------------------------------------------- /theos/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theos/makefiles/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/common.mk -------------------------------------------------------------------------------- /theos/makefiles/install/deb_local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/install/deb_local.mk -------------------------------------------------------------------------------- /theos/makefiles/install/deb_remote.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/install/deb_remote.mk -------------------------------------------------------------------------------- /theos/makefiles/install/none_local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/install/none_local.mk -------------------------------------------------------------------------------- /theos/makefiles/install/none_remote.mk: -------------------------------------------------------------------------------- 1 | none_local.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/instance/library.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/instance/rules.mk -------------------------------------------------------------------------------- /theos/makefiles/instance/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/instance/tool.mk -------------------------------------------------------------------------------- /theos/makefiles/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/legacy.mk -------------------------------------------------------------------------------- /theos/makefiles/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/library.mk -------------------------------------------------------------------------------- /theos/makefiles/master/library.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/master/library.mk -------------------------------------------------------------------------------- /theos/makefiles/master/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/master/rules.mk -------------------------------------------------------------------------------- /theos/makefiles/master/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/master/tool.mk -------------------------------------------------------------------------------- /theos/makefiles/messages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/messages.mk -------------------------------------------------------------------------------- /theos/makefiles/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/package.mk -------------------------------------------------------------------------------- /theos/makefiles/package/deb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/package/deb.mk -------------------------------------------------------------------------------- /theos/makefiles/package/none.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/package/none.mk -------------------------------------------------------------------------------- /theos/makefiles/platform/Darwin-arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/platform/Darwin-arm.mk -------------------------------------------------------------------------------- /theos/makefiles/platform/Darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/platform/Darwin.mk -------------------------------------------------------------------------------- /theos/makefiles/platform/Linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/platform/Linux.mk -------------------------------------------------------------------------------- /theos/makefiles/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/rules.mk -------------------------------------------------------------------------------- /theos/makefiles/stage.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/stage.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin-arm/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/Darwin-arm/iphone.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin-arm/native.mk: -------------------------------------------------------------------------------- 1 | iphone.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/Darwin/iphone.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin/macosx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/Darwin/macosx.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin/native.mk: -------------------------------------------------------------------------------- 1 | macosx.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Darwin/simulator.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/Darwin/simulator.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Linux/iphone.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/Linux/iphone.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Linux/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/Linux/linux.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/Linux/native.mk: -------------------------------------------------------------------------------- 1 | linux.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/_common/darwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/_common/darwin.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/_common/darwin_flat_bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/_common/darwin_flat_bundle.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/_common/darwin_hierarchial_bundle.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/_common/darwin_hierarchial_bundle.mk -------------------------------------------------------------------------------- /theos/makefiles/targets/_common/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/targets/_common/linux.mk -------------------------------------------------------------------------------- /theos/makefiles/tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DHowett/fauxsu/HEAD/theos/makefiles/tool.mk --------------------------------------------------------------------------------