├── README.md ├── makefile ├── makefile.cfg └── my_test_project ├── .gitignore ├── MyTestProject.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── MyTestProject ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-40@2x.png │ │ ├── Icon-60@2x.png │ │ └── Icon-Small@2x.png │ └── LaunchImage.launchimage │ │ └── Contents.json ├── LTAppDelegate.h ├── LTAppDelegate.m ├── MyTestProject-Info.plist ├── MyTestProject-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m ├── MyTestProjectTests ├── MyTestProjectTests-Info.plist ├── MyTestProjectTests.m └── en.lproj │ └── InfoPlist.strings ├── Rakefile ├── makefile ├── makefile.cfg ├── makefile_target_0.cfg └── makefile_target_1.cfg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/makefile -------------------------------------------------------------------------------- /makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/makefile.cfg -------------------------------------------------------------------------------- /my_test_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/.gitignore -------------------------------------------------------------------------------- /my_test_project/MyTestProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /my_test_project/MyTestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /my_test_project/MyTestProject/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /my_test_project/MyTestProject/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /my_test_project/MyTestProject/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /my_test_project/MyTestProject/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /my_test_project/MyTestProject/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /my_test_project/MyTestProject/LTAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/LTAppDelegate.h -------------------------------------------------------------------------------- /my_test_project/MyTestProject/LTAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/LTAppDelegate.m -------------------------------------------------------------------------------- /my_test_project/MyTestProject/MyTestProject-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/MyTestProject-Info.plist -------------------------------------------------------------------------------- /my_test_project/MyTestProject/MyTestProject-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/MyTestProject-Prefix.pch -------------------------------------------------------------------------------- /my_test_project/MyTestProject/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /my_test_project/MyTestProject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProject/main.m -------------------------------------------------------------------------------- /my_test_project/MyTestProjectTests/MyTestProjectTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProjectTests/MyTestProjectTests-Info.plist -------------------------------------------------------------------------------- /my_test_project/MyTestProjectTests/MyTestProjectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/MyTestProjectTests/MyTestProjectTests.m -------------------------------------------------------------------------------- /my_test_project/MyTestProjectTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /my_test_project/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/Rakefile -------------------------------------------------------------------------------- /my_test_project/makefile: -------------------------------------------------------------------------------- 1 | ../makefile -------------------------------------------------------------------------------- /my_test_project/makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/makefile.cfg -------------------------------------------------------------------------------- /my_test_project/makefile_target_0.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/makefile_target_0.cfg -------------------------------------------------------------------------------- /my_test_project/makefile_target_1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lexrus/ios-makefile/HEAD/my_test_project/makefile_target_1.cfg --------------------------------------------------------------------------------