File: mdom-dump

package info (click to toggle)
libmakefile-dom-perl 0.008-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 680 kB
  • sloc: perl: 7,616; makefile: 2
file content (13 lines) | stat: -rwxr-xr-x 213 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl

use strict;
use warnings;

use MDOM::Document::Gmake;
use MDOM::Dumper;

my $doc = MDOM::Document::Gmake->new(shift);
die unless $doc;
my $dumper = MDOM::Dumper->new( $doc );
$dumper->print;