diff --git a/hello/Makefile b/hello/Makefile new file mode 100644 index 0000000..7f07b2b --- /dev/null +++ b/hello/Makefile @@ -0,0 +1,13 @@ +.FAKE: all clean test + +all: hello + +clean: + rm -f hello + +hello: hello.c + musl-gcc -static -O2 -o hello hello.c + +test: hello + ./hello + diff --git a/hello/hello b/hello/hello new file mode 100755 index 0000000..f459be4 Binary files /dev/null and b/hello/hello differ diff --git a/hello/hello-gcc b/hello/hello-gcc new file mode 100755 index 0000000..bafc493 Binary files /dev/null and b/hello/hello-gcc differ diff --git a/hello/hello.c b/hello/hello.c new file mode 100644 index 0000000..367fff1 --- /dev/null +++ b/hello/hello.c @@ -0,0 +1,7 @@ +#include + +int main(int argc, const char **argv) { + puts("Hello, world!\n"); + return 0; +} +