├── APPLE_LICENSE ├── Makefile ├── README ├── ReleaseControl ├── BSDCommon.make ├── Common.make ├── GNUSource.make └── README ├── Standard ├── Commands.in ├── Implicit.make ├── Standard.make └── Variables.in └── Xcode └── BSD.xcconfig /APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/APPLE_LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/README -------------------------------------------------------------------------------- /ReleaseControl/BSDCommon.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/ReleaseControl/BSDCommon.make -------------------------------------------------------------------------------- /ReleaseControl/Common.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/ReleaseControl/Common.make -------------------------------------------------------------------------------- /ReleaseControl/GNUSource.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/ReleaseControl/GNUSource.make -------------------------------------------------------------------------------- /ReleaseControl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/ReleaseControl/README -------------------------------------------------------------------------------- /Standard/Commands.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/Standard/Commands.in -------------------------------------------------------------------------------- /Standard/Implicit.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/Standard/Implicit.make -------------------------------------------------------------------------------- /Standard/Standard.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/Standard/Standard.make -------------------------------------------------------------------------------- /Standard/Variables.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/Standard/Variables.in -------------------------------------------------------------------------------- /Xcode/BSD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CoreOSMakefiles/HEAD/Xcode/BSD.xcconfig --------------------------------------------------------------------------------