Initial commit

This commit is contained in:
Ruben Laguna
2015-01-26 21:17:24 +01:00
parent cf8de1f7bb
commit 0a0ba83b86
11 changed files with 83 additions and 2 deletions

2
src/Makefile.am Normal file
View File

@@ -0,0 +1,2 @@
bin_PROGRAMS = myexecutable
myexecutable_SOURCES = main.c

7
src/main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
int main(int argc, char *argv[])
{
printf ("Hello world\n");
return 0;
}