File: Makefile.header

package info (click to toggle)
libproc-background-perl 1.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 244 kB
  • sloc: perl: 575; makefile: 8
file content (13 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
my @programs_to_install = qw(timed-process);

# Allow us to suppress all program installation with the -n (library only)
# option.  This is for those that don't want to mess with the configuration
# section of this file.
use Getopt::Std;
use vars qw($opt_n);
unless (getopts('n')) {
  die "Usage: $0 [-n]\n";
}
@programs_to_install = () if $opt_n;
my %optional_PL_FILES= map {("bin/$_.PL" => "bin/$_")} @programs_to_install;
my @optional_EXE_FILES= map {"bin/$_"} @programs_to_install;