1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

More makefile cleanup - less risky wildcard usage

git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@54 ea6a568a-9f4f-0410-981a-c910a81bb256
This commit is contained in:
nkorslund 2008-10-22 18:39:56 +00:00
parent 2a8713ab84
commit e927c9a70e

View File

@ -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)