Makefile: Little Improvements
* not all platforms have gnu find
* not all platforms have rm
The user may adjust the settings in the header of the makefile
committer: Markus Bröker <mbroeker@largo.homelinux.org>
#include <stdio.h>
#include <stdlib.h>
int main (int argc, char **argv)
{
FILE *fp;
/*
* ERROR SEMICOLON IS MISSING
*/
printf ("Hello, world\n")
return EXIT_SUCCESS;
}