Bbfile: Difference between revisions

From Openembedded.org
Jump to navigation Jump to search
mNo edit summary
m (Reverted edits by Glenn (Talk); changed back to last version by 89.139.136.129)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<pre>
A BitBake (.bb) file is a logical unit of tasks to be executed. Normally this is a package to be built. Inter-.bb dependencies are obeyed. The files themselves are located via the BBFILES variable, which is set to a space seperated list of .bb files, and does handle wildcards.
#include <stdio.h>


int main (int argc, char** arcv)
See [http://bitbake.berlios.de/manual/ http://bitbake.berlios.de/manual/]
{
  printf("Hello word!!!\n");
return 0;
}
</pre>

Latest revision as of 16:22, 10 January 2010

A BitBake (.bb) file is a logical unit of tasks to be executed. Normally this is a package to be built. Inter-.bb dependencies are obeyed. The files themselves are located via the BBFILES variable, which is set to a space seperated list of .bb files, and does handle wildcards.

See http://bitbake.berlios.de/manual/