diff options
author | Tim Segers <tsegers@pm.me> | 2022-10-10 18:37:28 +0200 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2022-10-10 18:39:41 +0200 |
commit | 8c5571544169a4095ceebf5f6d6b5b9caf09c59b (patch) | |
tree | 08c8b44616ce4785d821db48fbbd0c5bf4421a75 | |
parent | 2337828095920b8debdb0f8e0337a9d6aad6b55c (diff) | |
download | opendeco-8c5571544169a4095ceebf5f6d6b5b9caf09c59b.tar.gz |
Move sources into src
-rw-r--r-- | .build.yml | 2 | ||||
-rw-r--r-- | Makefile | 16 | ||||
-rw-r--r-- | src/deco.c (renamed from deco.c) | 0 | ||||
-rw-r--r-- | src/deco.h (renamed from deco.h) | 0 | ||||
-rw-r--r-- | src/opendeco.c (renamed from opendeco.c) | 0 | ||||
-rw-r--r-- | src/output.c (renamed from output.c) | 0 | ||||
-rw-r--r-- | src/output.h (renamed from output.h) | 0 | ||||
-rw-r--r-- | src/schedule.c (renamed from schedule.c) | 0 | ||||
-rw-r--r-- | src/schedule.h (renamed from schedule.h) | 0 | ||||
-rw-r--r-- | test/deco_test.c | 2 |
10 files changed, 10 insertions, 10 deletions
@@ -7,7 +7,7 @@ sources: tasks: - check-format: | cd opendeco - clang-format-13 -n --Werror *.c *.h + clang-format-13 -n --Werror src/*.c src/*.h test/*.c test/*.h - build: | cd opendeco make @@ -2,19 +2,19 @@ VERSION=\"$(shell git describe --tags --dirty)\" PREFIX = /usr/local -all: opendeco test/opendeco_test +all: opendeco opendeco_test -opendeco: opendeco.c deco.c deco.h schedule.c schedule.h output.c output.h - gcc --std=c99 -pedantic -Wall -Werror -O3 -DVERSION=${VERSION} opendeco.c deco.c schedule.c output.c -lm -o opendeco +opendeco: src/opendeco.c src/deco.c src/deco.h src/schedule.c src/schedule.h src/output.c src/output.h + gcc --std=c99 -pedantic -Wall -Werror -O3 -DVERSION=${VERSION} src/opendeco.c src/deco.c src/schedule.c src/output.c -lm -o opendeco -test/opendeco_test: deco.c test/opendeco_test.c - gcc --std=c99 -pedantic -Wall -Werror -O3 test/minunit.c test/opendeco_test.c test/deco_test.c deco.c -lm -o test/opendeco_test +opendeco_test: test/opendeco_test.c test/deco_test.c src/deco.c + gcc --std=c99 -pedantic -Wall -Werror -O3 test/minunit.c test/opendeco_test.c test/deco_test.c src/deco.c -lm -o opendeco_test run: opendeco ./opendeco -d 30 -t 120 -g EAN32 --decogasses EAN50 -test: test/opendeco_test - ./test/opendeco_test +test: opendeco_test + ./opendeco_test install: all mkdir -p ${DESTDIR}${PREFIX}/bin @@ -26,4 +26,4 @@ uninstall: clean: rm opendeco - rm test/opendeco_test + rm opendeco_test diff --git a/opendeco.c b/src/opendeco.c index 9231ab3..9231ab3 100644 --- a/opendeco.c +++ b/src/opendeco.c diff --git a/schedule.c b/src/schedule.c index d13a9c9..d13a9c9 100644 --- a/schedule.c +++ b/src/schedule.c diff --git a/schedule.h b/src/schedule.h index f2e6363..f2e6363 100644 --- a/schedule.h +++ b/src/schedule.h diff --git a/test/deco_test.c b/test/deco_test.c index 0b492f2..2931f44 100644 --- a/test/deco_test.c +++ b/test/deco_test.c @@ -1,6 +1,6 @@ #include "minunit.h" -#include "../deco.h" +#include "../src/deco.h" MU_TEST(test_bar_to_msw) { |