From 8069a0e926f35b48773485ccceaba0e500539f2f Mon Sep 17 00:00:00 2001 From: tylen Date: Mon, 23 Sep 2024 11:36:46 +0000 Subject: [PATCH] cdo: move sources to spearate folder --- build.sh | 2 +- cdo.c => src/cdo.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cdo.c => src/cdo.c (100%) diff --git a/build.sh b/build.sh index 3a892aa..e70f23c 100755 --- a/build.sh +++ b/build.sh @@ -4,7 +4,7 @@ set -xe CC="gcc" FLAGS="-Wall -Wpedantic" -SRCS="cdo.c" +SRCS="$(find ./src -type f -name "*.c")" CURRENT_DIR="$(git rev-parse --show-toplevel)" BUILD_DIR="${CURRENT_DIR}/build" diff --git a/cdo.c b/src/cdo.c similarity index 100% rename from cdo.c rename to src/cdo.c