diff options
author | bjarni <bjarni@openttd.org> | 2004-12-01 19:44:39 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2004-12-01 19:44:39 +0000 |
commit | a317cbdc0987d506eeadce2b9452088c6bae5428 (patch) | |
tree | b22e4e30deb91105d37725e0cf242e7ecf5a7bac /Makefile | |
parent | 5a458590b86ff66bc2fd37b38ed467015db45e5f (diff) | |
download | openttd-a317cbdc0987d506eeadce2b9452088c6bae5428.tar.xz |
(svn r877) Moved bemidi.cpp correctly this time
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -543,7 +543,8 @@ endif ttd_OBJS = $(C_SOURCES:%.c=%.o) $(CXX_SOURCES:%.cpp=%.o) ifdef BEOS -CXX_SOURCES += bemidi.cpp +CXX_SOURCES += os/beos/bemidi.cpp +CFLAGS += -I. endif ifdef WIN32 @@ -745,6 +746,6 @@ DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :) >> .deps/$(*F).P; \ rm .deps/$(*F).pp -# For DirectMusic build +# For DirectMusic build and BeOS specific parts %.o: %.cpp $(MAKE_CONFIG) - $(CXX_BUILD) $< + $(CXX_BUILD) $< -o $@ |