mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 20:47:58 +00:00
11 lines
213 B
Groovy
11 lines
213 B
Groovy
task build(type:Exec) {
|
|
outputs.file 'tpm_module'
|
|
inputs.dir fileTree(dir: '.').include('main.cpp').include('*.hpp')
|
|
commandLine 'make'
|
|
}
|
|
|
|
task clean() {
|
|
delete 'tpm_module', 'main.d', 'main.o'
|
|
}
|
|
|