diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-08-26 03:40:56 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-08-26 03:40:56 -0300 |
commit | 50d2db5c271537d78ea0037fe285d081df38fa02 (patch) | |
tree | bcb8911f516a5561b3ec37cb0a010e603a494586 /extra/legacy/test/src | |
parent | 8eafe04ec5eaf917d9e2d58993604c454f1a26d1 (diff) |
add copy from the master repo
Diffstat (limited to 'extra/legacy/test/src')
-rw-r--r-- | extra/legacy/test/src/Makefile | 5 | ||||
-rw-r--r-- | extra/legacy/test/src/test.c | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/extra/legacy/test/src/Makefile b/extra/legacy/test/src/Makefile new file mode 100644 index 0000000..105b730 --- /dev/null +++ b/extra/legacy/test/src/Makefile @@ -0,0 +1,5 @@ +all: + gcc $(CFLAGS) -o test test.c + +install: + install -D -m755 test $(DESTDIR)/usr/bin/$(DESTBIN) diff --git a/extra/legacy/test/src/test.c b/extra/legacy/test/src/test.c new file mode 100644 index 0000000..a661689 --- /dev/null +++ b/extra/legacy/test/src/test.c @@ -0,0 +1,7 @@ +#include <stdio.h> +#include <stdlib.h> + +int main(void) { + printf("Arch is the best!\n"); + return EXIT_SUCCESS; +} |