Makefile

From Linuxintro
Revision as of 15:07, 6 February 2011 by imported>ThorstenStaerk (→‎See also)
duffman:~/hello # cat main.c 
#include <stdio.h>

int main()
{
  printf("hello world");
}
duffman:~/hello # cat Makefile 
all:hello

hello: main.c
        gcc main.c -o hello

See also

todo