From 50d2db5c271537d78ea0037fe285d081df38fa02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Wed, 26 Aug 2015 03:40:56 -0300 Subject: add copy from the master repo --- extra/legacy/test/src/Makefile | 5 +++++ extra/legacy/test/src/test.c | 7 +++++++ 2 files changed, 12 insertions(+) create mode 100644 extra/legacy/test/src/Makefile create mode 100644 extra/legacy/test/src/test.c (limited to 'extra/legacy/test/src') 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 +#include + +int main(void) { + printf("Arch is the best!\n"); + return EXIT_SUCCESS; +} -- cgit v1.2.3-2-g168b