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 $@ $< @$(CC) $(LIBS) -o $@ $<
all: $(ELF) all: $(ELF)
@for dir in $(SUBDIRS); do \ # @for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir; \ # $(MAKE) -C $$dir; \
done # done
sub: sub:
@-find . -mindepth 1 -maxdepth 1 -type d -exec make --no-print-directory -C {} \; @-find . -mindepth 1 -maxdepth 1 -type d -exec make --no-print-directory -C {} \;