Browse Source

mesa: Include C++ files in the makedepend of DRI drivers.

tags/android-x86-2.2
Eric Anholt 15 years ago
parent
commit
6b1d7dd781
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      src/mesa/drivers/dri/Makefile.template

+ 3
- 2
src/mesa/drivers/dri/Makefile.template View File

@@ -86,11 +86,12 @@ subdirs:
symlinks:


depend: $(C_SOURCES) $(ASM_SOURCES) $(SYMLINKS)
depend: $(C_SOURCES) $(CXX_SOURCES) $(ASM_SOURCES) $(SYMLINKS)
@ echo "running $(MKDEP)"
@ rm -f depend
@ touch depend
@ $(MKDEP) $(MKDEP_OPTIONS) $(DRIVER_DEFINES) $(INCLUDES) $(C_SOURCES) \
@ $(MKDEP) $(MKDEP_OPTIONS) $(DRIVER_DEFINES) $(INCLUDES) \
$(C_SOURCES) $(CXX_SOURCES) \
$(ASM_SOURCES) > /dev/null 2>/dev/null



Loading…
Cancel
Save