mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05:00
Build: Only look at SUBDIRS with Makefiles
If a directory is renamed or deleted before 'make clean', git will delete the Makefile but leave all of the object and dependency files around. When make would try to recurse into that directory from the wildcard, it would error out since there is no Makefile.
This commit is contained in:
parent
a17e702eba
commit
0d2bfe5c65
Notes:
sideshowbarker
2024-07-19 09:03:55 +09:00
Author: https://github.com/jcs Commit: https://github.com/SerenityOS/serenity/commit/0d2bfe5c65b Pull-request: https://github.com/SerenityOS/serenity/pull/1294
7 changed files with 7 additions and 7 deletions
|
@ -1,3 +1,3 @@
|
|||
SUBDIRS := $(wildcard */.)
|
||||
SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile))
|
||||
|
||||
include ../Makefile.subdir
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
SUBDIRS := $(wildcard */.)
|
||||
SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile))
|
||||
|
||||
include ../Makefile.subdir
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
SUBDIRS := $(wildcard */.)
|
||||
SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile))
|
||||
|
||||
include ../Makefile.subdir
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
SUBDIRS := $(wildcard */.)
|
||||
SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile))
|
||||
|
||||
include ../Makefile.subdir
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
SUBDIRS := $(wildcard */.)
|
||||
SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile))
|
||||
|
||||
include ../Makefile.subdir
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
SUBDIRS := $(wildcard */.)
|
||||
SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile))
|
||||
|
||||
include ../Makefile.subdir
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
SUBDIRS := $(wildcard */.)
|
||||
SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile))
|
||||
|
||||
include ../Makefile.subdir
|
||||
|
|
Loading…
Reference in a new issue