When I execute make, I get lots of errors, like the following:
gcc -Wmissing-prototypes -Wformat -g -o -I. -I../../Include -DLINUX2 -c ...
How can I get around these errors?
Those are not errors. The 'missing-prototypes' string is directive to the compiler telling it to print a warning if a global function is defined without a previous prototype declaration. The lines you see are the normal output from the build process.