From e927c9a70e68c69e814769c2c0cf173be06a717d Mon Sep 17 00:00:00 2001 From: nkorslund Date: Wed, 22 Oct 2008 18:39:56 +0000 Subject: [PATCH] More makefile cleanup - less risky wildcard usage git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@54 ea6a568a-9f4f-0410-981a-c910a81bb256 --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5ffc0df585..17f0a9dabf 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,9 @@ avcodec_cpp_files=$(avcodec_cpp:%=sound/cpp_%.cpp) bullet_cpp_files=$(bullet_cpp:%=bullet/cpp_%.cpp) # All object files needed by openmw and esmtool -src := $(wildcard */*.d) +src := $(wildcard bsa/*.d) $(wildcard bullet/*.d) $(wildcard core/*.d) \ +$(wildcard esm/*.d) $(wildcard input/*.d) $(wildcard nif/*.d) $(wildcard ogre/*.d) \ +$(wildcard scene/*.d) $(wildcard sound/*.d) $(wildcard util/*.d) src := $(src) $(wildcard monster/util/*.d) obj := $(src:%.d=objs/%.o)