Skip to content

Instantly share code, notes, and snippets.

@aliou
Created April 10, 2012 13:27
Show Gist options
  • Save aliou/2351351 to your computer and use it in GitHub Desktop.
Save aliou/2351351 to your computer and use it in GitHub Desktop.
test : test.o
gcc test.o -o test
test.o : test.c
gcc -c test.c
#include <stdio.h>
int main() {
printf("Hello, World.\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment