diff options
-rw-r--r-- | Applications/Makefile | 2 | ||||
-rw-r--r-- | Demos/Makefile | 2 | ||||
-rw-r--r-- | DevTools/Makefile | 2 | ||||
-rw-r--r-- | Games/Makefile | 2 | ||||
-rw-r--r-- | Libraries/Makefile | 2 | ||||
-rw-r--r-- | MenuApplets/Makefile | 2 | ||||
-rw-r--r-- | Servers/Makefile | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/Applications/Makefile b/Applications/Makefile index 6a7b80e895..0025ae2061 100644 --- a/Applications/Makefile +++ b/Applications/Makefile @@ -1,3 +1,3 @@ -SUBDIRS := $(wildcard */.) +SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile)) include ../Makefile.subdir diff --git a/Demos/Makefile b/Demos/Makefile index 6a7b80e895..0025ae2061 100644 --- a/Demos/Makefile +++ b/Demos/Makefile @@ -1,3 +1,3 @@ -SUBDIRS := $(wildcard */.) +SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile)) include ../Makefile.subdir diff --git a/DevTools/Makefile b/DevTools/Makefile index 6a7b80e895..0025ae2061 100644 --- a/DevTools/Makefile +++ b/DevTools/Makefile @@ -1,3 +1,3 @@ -SUBDIRS := $(wildcard */.) +SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile)) include ../Makefile.subdir diff --git a/Games/Makefile b/Games/Makefile index 6a7b80e895..0025ae2061 100644 --- a/Games/Makefile +++ b/Games/Makefile @@ -1,3 +1,3 @@ -SUBDIRS := $(wildcard */.) +SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile)) include ../Makefile.subdir diff --git a/Libraries/Makefile b/Libraries/Makefile index 6a7b80e895..0025ae2061 100644 --- a/Libraries/Makefile +++ b/Libraries/Makefile @@ -1,3 +1,3 @@ -SUBDIRS := $(wildcard */.) +SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile)) include ../Makefile.subdir diff --git a/MenuApplets/Makefile b/MenuApplets/Makefile index 6a7b80e895..0025ae2061 100644 --- a/MenuApplets/Makefile +++ b/MenuApplets/Makefile @@ -1,3 +1,3 @@ -SUBDIRS := $(wildcard */.) +SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile)) include ../Makefile.subdir diff --git a/Servers/Makefile b/Servers/Makefile index 6a7b80e895..0025ae2061 100644 --- a/Servers/Makefile +++ b/Servers/Makefile @@ -1,3 +1,3 @@ -SUBDIRS := $(wildcard */.) +SUBDIRS := $(patsubst %/Makefile,%/,$(wildcard */Makefile)) include ../Makefile.subdir |