commit dc78c407ebc23628f6e6ad979370231029ef742d parent c33461d20f2bda9bb097fda5bac2af8576b72885 Author: citbl <citbl@citbl.org> Date: Fri, 10 Oct 2025 21:11:07 +1000 refac Diffstat:
| M | makefile | | | 4 | ++-- |
| R | config.h -> src/config.h | | | 0 | |
| R | db.c -> src/db.c | | | 0 | |
| R | db.h -> src/db.h | | | 0 | |
| R | feeds.c -> src/feeds.c | | | 0 | |
| R | feeds.h -> src/feeds.h | | | 0 | |
| R | keys.c -> src/keys.c | | | 0 | |
| R | readr.h -> src/readr.h | | | 0 | |
| R | readr_main.c -> src/readr_main.c | | | 0 | |
| R | render.c -> src/render.c | | | 0 | |
| R | termbox2.h -> src/termbox2.h | | | 0 | |
| R | tui.c -> src/tui.c | | | 0 | |
| R | tui.h -> src/tui.h | | | 0 | |
| R | utils.c -> src/utils.c | | | 0 | |
| R | utils.h -> src/utils.h | | | 0 |
15 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/makefile b/makefile @@ -4,13 +4,13 @@ CFLAGS := -std=c99 -g -Wall -Wextra -fsanitize=address -fsanitize=undefined CREL := -std=c99 -Wall -Wextra -Wpedantic -Werror -O3 default: - cc **.c ${CFLAGS} ${PKG} -o ${APP} + cc **/*.c ${CFLAGS} ${PKG} -o ${APP} clean: $(RM) readr release: clean - cc **.c ${CREL} ${PKG} -o ${APP} + cc **/*.c ${CREL} ${PKG} -o ${APP} install: release mkdir -p /usr/local/bin diff --git a/config.h b/src/config.h diff --git a/db.c b/src/db.c diff --git a/db.h b/src/db.h diff --git a/feeds.c b/src/feeds.c diff --git a/feeds.h b/src/feeds.h diff --git a/keys.c b/src/keys.c diff --git a/readr.h b/src/readr.h diff --git a/readr_main.c b/src/readr_main.c diff --git a/render.c b/src/render.c diff --git a/termbox2.h b/src/termbox2.h diff --git a/tui.c b/src/tui.c diff --git a/tui.h b/src/tui.h diff --git a/utils.c b/src/utils.c diff --git a/utils.h b/src/utils.h