Sha256: 99a41d9dbea80d95b72073ac9bb8abcd94e60e41106fd000b3fe49af7a63c04c

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 KB

Contents

#
#  Main authors:
#     Christian Schulte <schulte@gecode.org>
#
#  Copyright:
#     Christian Schulte, 2005
#
#  Last modified:
#     $Date: 2005-11-17 10:54:23 +0100 (Thu, 17 Nov 2005) $ by $Author: tack $
#     $Revision: 2593 $
#
#  This file is part of Gecode, the generic constraint
#  development environment:
#     http://www.gecode.org
#
#  See the file "LICENSE" for information on usage and
#  redistribution of this file, and for a
#     DISCLAIMER OF ALL WARRANTIES.
#
#

# 
# Ultra-simplistic makedepend: Just find existing files
# Relies on:
#  - all filenames are relative to root directory, which is the first argument
#  - #ifdef can be safely ignored
#

$i=0;

$predef{"vti.icc"} = 1;

$root = $ARGV[$i++];

while ($target = $ARGV[$i++]) {
  my @todo = ();
  my %done = ();
  push @todo, $target;
  while ($f = pop @todo) {
    open FILE, "$root/$f";
    while ($l = <FILE>) {
      if ($l =~ /^\#include "(.*)"/) {
	$g = $1;
	$g =~ s|^\./||og;
	if ($predef{$g} || ((-e "$root/$g") && !$done{$g})) {
	  push @todo, $g;
	  $done{$g} = 1;
	}
      }
    }
    close FILE;
  }
  $target =~ s|\.cc||og;
  print "$target\$(OBJSUFFIX) $target\$(SBJSUFFIX): ";
  $l = 3;
  foreach $g (sort(keys(%done))) {
    if ($l == 3) {
      print "\\\n\t";
      $l = 0;
    }
    print "$root/$g ";
    $l++;
  }
  print "\n";
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gecoder-with-gecode-0.7.1 ext/gecode-1.3.1/misc/makedepend.perl