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.
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";
|