diff options
| author | mo k <mo@mokhan.ca> | 2012-02-17 15:42:21 -0700 |
|---|---|---|
| committer | mo k <mo@mokhan.ca> | 2012-02-17 15:42:21 -0700 |
| commit | e3566491d4d448837475768639c802ecbfbdbac1 (patch) | |
| tree | a04827a9e6300a7e2155811f0464377db65e4fe3 | |
create makefile.
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | makefile | 2 | ||||
| -rw-r--r-- | src/main.c | 8 |
3 files changed, 11 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f47cb20 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.out diff --git a/makefile b/makefile new file mode 100644 index 0000000..849f41d --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +rover: src/main.c + gcc src/main.c -o rover.out diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..01a99e0 --- /dev/null +++ b/src/main.c @@ -0,0 +1,8 @@ +#include <stdio.h> +#include <stdlib.h> + +int main(int argc, const char *argv[]) +{ + puts("hello world"); + return 0; +} |
