Skip to content

Instantly share code, notes, and snippets.

@dkelosky
Last active January 13, 2019 13:59
Show Gist options
  • Save dkelosky/fcab58bb34e94611139d2fe95a1b8642 to your computer and use it in GitHub Desktop.
Save dkelosky/fcab58bb34e94611139d2fe95a1b8642 to your computer and use it in GitHub Desktop.
// job info
job: {
// metal c compilation configuration
compile: {
options: metalOptions64,
includes: metalIncludes,
sources: {
TEMPLATE: {},
AMS: {
options: metalOptions
},
},
},
// assemble configuration
assemble: {
options: assemblyOptions,
includes: assemblyMaclibs,
sources: {
TEMPLATE: {
// override options here
},
AMS: {},
},
},
// bind configuration
bind: {
options: bindOptions,
// includes: nothing included in every bind right now
sources: {
TEMPLATE: {
includes: [
"AMS",
]
// override options here
}
}
},
// executables
execute: {
// options: no parms to every exec right now (options are PARM=)
sources: {
TEMPLATE: {
// override options here (options are PARM=)
// options: '"HELLO WORLD"'
}
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment