11 lines
245 B
11 lines
245 B
10 years ago
|
#!/usr/bin/perl
|
||
|
|
||
|
# command to configure the build
|
||
|
$inferbuild_configure = "echo 'no configure required'";
|
||
|
|
||
|
# command to execute the build
|
||
|
$inferbuild_make = "make";
|
||
|
|
||
|
# command to clean up before/after the build
|
||
|
$inferbuild_clean = "make clean";
|