From e71c9bb17ff0a6f3592758be67b8c23558cb40e9 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Fri, 26 Dec 2025 03:27:03 +0100 Subject: [PATCH] Comment out subdirectory in makefile all target Some of these are dependent on libraries that might not always be available on all machines. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index abd2ba5..6a7018a 100644 --- a/Makefile +++ b/Makefile @@ -33,9 +33,9 @@ SUBDIRS += sqlite @$(CC) $(LIBS) -o $@ $< all: $(ELF) - @for dir in $(SUBDIRS); do \ - $(MAKE) -C $$dir; \ - done + # @for dir in $(SUBDIRS); do \ + # $(MAKE) -C $$dir; \ + # done sub: @-find . -mindepth 1 -maxdepth 1 -type d -exec make --no-print-directory -C {} \;