Comment out subdirectory in makefile all target

Some of these are dependent on libraries that might not always be
available on all machines.
This commit is contained in:
Imbus 2025-12-26 03:27:03 +01:00
parent b74d537a86
commit e71c9bb17f

View file

@ -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 {} \;