Changeset 6789

Show
Ignore:
Timestamp:
06/09/10 22:28:19 (17 months ago)
Author:
westram
Message:
  • makedepends now scans __cplusplus section
    • needed for C++ code
    • does not harm C code (it just might "depend" on more files)
Location:
branches/refactor
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/refactor/Makefile

    r6753 r6789  
    583583AINCLUDES := -I. -I$(ARBHOME)/INCLUDE $(XINCLUDES) 
    584584CPPINCLUDES := -I. -I$(ARBHOME)/INCLUDE $(XINCLUDES) 
    585 MAKEDEPENDFLAGS := -- $(cflags) -- -DARB_OPENGL -DUNIT_TESTS=1 -I. -Y$(ARBHOME)/INCLUDE 
     585MAKEDEPENDFLAGS := -- $(cflags) -- -DARB_OPENGL -DUNIT_TESTS=1 -D__cplusplus -I. -Y$(ARBHOME)/INCLUDE 
    586586 
    587587ifeq ($(VTABLE_INFRONTOF_CLASS),1) 
  • branches/refactor/SOURCE_TOOLS/fix_depends.pl

    r6788 r6789  
    6666    push @$depends_r, "$file: $depends_on"; 
    6767  } 
    68   else { 
    69     push @$depends_r, "# skipped '$depends_on'"; 
    70   } 
    7168} 
    7269