mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:17:36 +00: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
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…
Add table
Add a link
Reference in a new issue