From 9a955180a4179237d3474a73c6829a6554a9bc09 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 24 Jun 2006 08:48:11 +0000 Subject: * Renamed config.mak to config.mk * Renamed common.rules to rules.mk * Removed explicit declaration of MODULE_DIRS in various spots (instead we let rules.mk compute it) svn-id: r23275 --- backends/module.mk | 12 +----------- backends/null/module.mk | 4 ++-- backends/sdl/module.mk | 4 ++-- backends/x11/module.mk | 4 ++-- 4 files changed, 7 insertions(+), 17 deletions(-) (limited to 'backends') diff --git a/backends/module.mk b/backends/module.mk index e59d76cb88..54eb0fbe83 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -14,15 +14,5 @@ MODULE_OBJS := \ midi/seq.o \ midi/windows.o -MODULE_DIRS += \ - backends \ - backends/fs \ - backends/fs/posix \ - backends/fs/morphos \ - backends/fs/windows \ - backends/fs/amigaos4 \ - backends/fs/dc \ - backends/midi - # Include common rules -include $(srcdir)/common.rules +include $(srcdir)/rules.mk diff --git a/backends/null/module.mk b/backends/null/module.mk index 29a16f7a0a..d8f2161a2e 100644 --- a/backends/null/module.mk +++ b/backends/null/module.mk @@ -4,7 +4,7 @@ MODULE_OBJS := \ null.o MODULE_DIRS += \ - backends/null + backends/null/ -# We don't use the common.rules here on purpose +# We don't use the rules.mk here on purpose OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS) diff --git a/backends/sdl/module.mk b/backends/sdl/module.mk index 4006354e5e..fd9e314076 100644 --- a/backends/sdl/module.mk +++ b/backends/sdl/module.mk @@ -6,7 +6,7 @@ MODULE_OBJS := \ sdl.o MODULE_DIRS += \ - backends/sdl + backends/sdl/ -# We don't use the common.rules here on purpose +# We don't use the rules.mk here on purpose OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS) diff --git a/backends/x11/module.mk b/backends/x11/module.mk index c9a3908e2f..7350708299 100644 --- a/backends/x11/module.mk +++ b/backends/x11/module.mk @@ -4,7 +4,7 @@ MODULE_OBJS := \ x11.o MODULE_DIRS += \ - backends/x11 + backends/x11/ -# We don't use the common.rules here on purpose +# We don't use the rules.mk here on purpose OBJS := $(addprefix $(MODULE)/, $(MODULE_OBJS)) $(OBJS) -- cgit v1.2.3