You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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";
|