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:
parent
b74d537a86
commit
e71c9bb17f
1 changed files with 3 additions and 3 deletions
6
Makefile
6
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 {} \;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue