RuleDef.pm (automake-1.16.2.tar.xz) | : | RuleDef.pm (automake-1.16.3.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 20 | skipping to change at line 20 | |||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
# GNU General Public License for more details. | # GNU General Public License for more details. | |||
# You should have received a copy of the GNU General Public License | # You should have received a copy of the GNU General Public License | |||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | # along with this program. If not, see <https://www.gnu.org/licenses/>. | |||
package Automake::RuleDef; | package Automake::RuleDef; | |||
use 5.006; | use 5.006; | |||
use strict; | use strict; | |||
use warnings FATAL => 'all'; | ||||
use Carp; | use Carp; | |||
use Exporter; | ||||
use Automake::ChannelDefs; | use Automake::ChannelDefs; | |||
use Automake::ItemDef; | use Automake::ItemDef; | |||
require Exporter; | our @ISA = qw (Automake::ItemDef Exporter); | |||
use vars '@ISA', '@EXPORT'; | our @EXPORT = qw (&RULE_AUTOMAKE &RULE_USER); | |||
@ISA = qw/Automake::ItemDef Exporter/; | ||||
@EXPORT = qw (&RULE_AUTOMAKE &RULE_USER); | ||||
=head1 NAME | =head1 NAME | |||
Automake::RuleDef - a class for rule definitions | Automake::RuleDef - a class for rule definitions | |||
=head1 SYNOPSIS | =head1 SYNOPSIS | |||
use Automake::RuleDef; | use Automake::RuleDef; | |||
use Automake::Location; | use Automake::Location; | |||
End of changes. 3 change blocks. | ||||
4 lines changed or deleted | 6 lines changed or added |