-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
48 lines (48 loc) · 1.32 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'HOSTDB',
'EXE_FILES' => ['add-host',
'add-hostalias',
'add-subnet',
'add-zone',
'bulk-hostattr',
'bump-SOA-serial',
'cli-whois',
'delete-host',
'delete-hostalias',
'delete-hostattr',
'delete-subnet',
'delete-zone',
'deletehost.cgi',
'deletehostalias.cgi',
'draw-subnets',
'elcheapo-dhcp-config',
'generate-dhcp-config',
'generate-dhcp-subnet-declaration',
'generate-named-conf',
'generate-zonefiles',
'home.cgi',
'hostalias.cgi',
'hostattributes.cgi',
'housekeep-dnszone',
'list-hostwithattr',
'list-subnet',
'list-zones',
'modify-host',
'modify-hostalias',
'modify-subnet',
'modify-zone',
'modifyhost.cgi',
'modifysubnet.cgi',
'modifyzone.cgi',
'request-reload',
'set-hostattr',
'showsubnet.cgi',
'update-mac-timestamps',
'whois.cgi',
'zonediff'
],
'VERSION_FROM' => 'HOSTDB.pm', # finds $VERSION
);