commit 44cc47701e4cdabcf9413cf953db9ff2079907bd Author: Vlasta Vesely Date: Wed Apr 25 14:29:11 2018 +0200 initial diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..41da593 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: all clean + +all: + $(CC) main.c -o main + ./main + +clean: + $(RM) -f main diff --git a/main.c b/main.c new file mode 100644 index 0000000..5983ba3 --- /dev/null +++ b/main.c @@ -0,0 +1,12 @@ +#include +#include +#include + + +int main(int argc, const char **argv) +{ + + + + return 0; +}