summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/makefile.pm
blob: 0595b0fa7df74bb96c825fa7192b172dfbd2e9ea (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# A buildsystem plugin for handling simple Makefile based projects.
#
# Copyright: © 2008 Joey Hess
#            © 2008-2009 Modestas Vainius
# License: GPL-2+

package Debian::Debhelper::Buildsystem::makefile;

use strict;
use Debian::Debhelper::Dh_Lib;
use base 'Debian::Debhelper::Dh_Buildsystem';

sub get_makecmd_C {
	my $self=shift;
	if ($self->get_builddir()) {
		return $self->{makecmd} . " -C " . $self->get_builddir();
	}
	return $self->{makecmd};
}

sub exists_make_target {
	my ($self, $target) = @_;
	my $makecmd=$self->get_makecmd_C();

	# Use make -n to check to see if the target would do
	# anything. There's no good way to test if a target exists.
	my $ret=`$makecmd -s -n $target 2>/dev/null`;
	chomp $ret;
	return length($ret);
}

sub make_first_existing_target {
	my $self=shift;
	my $targets=shift;

	foreach my $target (@$targets) {
		if ($self->exists_make_target($target)) {
			$self->doit_in_builddir($self->{makecmd}, $target, @_);
			return $target;
		}
	}
	return undef;
}

sub DESCRIPTION {
	"support for building Makefile based packages (make && make install)"
}

sub new {
	my $cls=shift;
	my $self=$cls->SUPER::new(@_);
	$self->{makecmd} = (exists $ENV{MAKE}) ? $ENV{MAKE} : "make";
	return $self;
}

sub check_auto_buildable {
	my $self=shift;
	my ($action) = @_;

	# Handles build, test, install, clean; configure - next class
	# XXX JEH shouldn't it also handle configure, just as a no-op?
	# XXX MDX No, then cmake.mk would have no chance of hitting for
	#         no good reason.
	if (grep /^\Q$action\E$/, qw{build test install clean}) {
		# This is always called in the source directory, but generally
		# Makefiles are created (or live) in the the build directory.
		return -e $self->get_buildpath("Makefile") ||
		       -e $self->get_buildpath("makefile") ||
		       -e $self->get_buildpath("GNUmakefile");
	}
	return 0;
}

sub build {
	my $self=shift;
	$self->doit_in_builddir($self->{makecmd}, @_);
}

sub test {
	my $self=shift;
	$self->make_first_existing_target(['test', 'check'], @_);
}

sub install {
	my $self=shift;
	my $destdir=shift;
	$self->make_first_existing_target(['install'], "DESTDIR=$destdir", @_);
}

sub clean {
	my $self=shift;
	if (!$self->clean_builddir()) {
		$self->make_first_existing_target(['distclean', 'realclean', 'clean'], @_);
	}
}

1;