File: dsl.pl

package info (click to toggle)
libextutils-builder-perl 0.017-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: perl: 1,351; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 170 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;

load_extension("Callback");

add_foo($_) for 0..2;

create_node(
	target => 'foo',
	dependencies => [ map { "foo$_" } 0..2 ],
	phony => 1,
);