Skip to content

Instantly share code, notes, and snippets.

/Makefile Secret

Created July 17, 2015 23:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2a73f02a001a102fb4d5 to your computer and use it in GitHub Desktop.
Save anonymous/2a73f02a001a102fb4d5 to your computer and use it in GitHub Desktop.
c starter
#include <stdio.h>
int main(int argc, char const *argv[]) {
printf("hello world!\n");
return 0;
}
all:
gcc -o run main.c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment