Changeset - r2301:19bff0929c47
[Not reviewed]
master
0 1 0
truelight - 19 years ago 2005-08-06 21:50:26
truelight@openttd.org
(svn r2825) -Fix: GCC that put deps in the wrong dirs can now compile OTTD again
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
Makefile
Show inline comments
 
@@ -1036,15 +1036,15 @@ DEPS_MAGIC := $(shell mkdir -p .deps .de
 

	
 
%.o: %.c $(MAKE_CONFIG) endian_target.h table/strings.h
 
	$(call cmd,c_compile)
 
	@mv $(<:%.c=%.d) $(<:%.c=.deps/%.d)
 
	@[ -f $(<:%.c=%.d) ] && mv $(<:%.c=%.d) $(<:%.c=.deps/%.d) || mv $(*F).d $(<:%.c=.deps/%.d)
 

	
 
%.o: %.cpp  $(MAKE_CONFIG) endian_target.h table/strings.h
 
	$(call cmd,cxx_compile)
 
	@mv $(<:%.cpp=%.d) $(<:%.cpp=.deps/%.d)
 
	@[ -f $(<:%.cpp=%.d) ] && mv $(<:%.cpp=%.d) $(<:%.cpp=.deps/%.d) || mv $(*F).d $(<:%.cpp=.deps/%.d)
 

	
 
%.o: %.m  $(MAKE_CONFIG) endian_target.h table/strings.h
 
	$(call cmd,objc_compile)
 
	@mv $(<:%.m=%.d) $(<:%.m=.deps/%.d)
 
	@[ -f $(<:%.m=%.d) ] && mv $(<:%.m=%.d) $(<:%.m=.deps/%.d) || mv $(*F).d $(<:%.m=.deps/%.d)
 

	
 
# Silence stale header dependencies
 
%.h:
0 comments (0 inline, 0 general)