From ca6153b68cc07f63edba44ada3f46e189dcf4c5c Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Mon, 15 Aug 2022 20:37:38 +0000 Subject: [PATCH] kata: move test apps into a C hierarchy in prep for adding Rust apps Note this requires companion changes to the build glue. Change-Id: I5876d3c8b50f373d21d42cf30dbb7031654fb709 GitOrigin-RevId: 963f05fb3c018ad2d509ef68ef37bf83d924337e --- apps/{ => c}/fibonacci/Makefile | 0 apps/{ => c}/fibonacci/fibonacci.c | 0 apps/{ => c}/hello/Makefile | 0 apps/{ => c}/hello/hello.c | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename apps/{ => c}/fibonacci/Makefile (100%) rename apps/{ => c}/fibonacci/fibonacci.c (100%) rename apps/{ => c}/hello/Makefile (100%) rename apps/{ => c}/hello/hello.c (100%) diff --git a/apps/fibonacci/Makefile b/apps/c/fibonacci/Makefile similarity index 100% rename from apps/fibonacci/Makefile rename to apps/c/fibonacci/Makefile diff --git a/apps/fibonacci/fibonacci.c b/apps/c/fibonacci/fibonacci.c similarity index 100% rename from apps/fibonacci/fibonacci.c rename to apps/c/fibonacci/fibonacci.c diff --git a/apps/hello/Makefile b/apps/c/hello/Makefile similarity index 100% rename from apps/hello/Makefile rename to apps/c/hello/Makefile diff --git a/apps/hello/hello.c b/apps/c/hello/hello.c similarity index 100% rename from apps/hello/hello.c rename to apps/c/hello/hello.c