mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-21 22:07:57 +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'
|
||
|
}
|
||
|
|