summaryrefslogtreecommitdiffstats
path: root/rules/cross-insight.make
blob: 25708a9e15710d72fd8958743b81f81f6747feac (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
# -*-makefile-*-
#
# Copyright (C) 2007 by Sascha Hauer
#               2010 by Marc Kleine-Budde <mkl@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
CROSS_PACKAGES-$(PTXCONF_CROSS_INSIGHT) += cross-insight

#
# Paths and names
#
CROSS_INSIGHT_VERSION	:= 6.8-1
CROSS_INSIGHT		:= insight-$(CROSS_INSIGHT_VERSION)
CROSS_INSIGHT_SUFFIX	:= tar.bz2
CROSS_INSIGHT_URL	:= ftp://sourceware.org/pub/insight/releases/$(CROSS_INSIGHT).$(CROSS_INSIGHT_SUFFIX)
CROSS_INSIGHT_SOURCE	:= $(SRCDIR)/$(CROSS_INSIGHT).$(CROSS_INSIGHT_SUFFIX)
CROSS_INSIGHT_DIR	:= $(CROSS_BUILDDIR)/$(CROSS_INSIGHT)

# ----------------------------------------------------------------------------
# Get
# ----------------------------------------------------------------------------

$(CROSS_INSIGHT_SOURCE):
	@$(call targetinfo)
	@$(call get, CROSS_INSIGHT)

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# autoconf
#
CROSS_INSIGHT_CONFTOOL := autoconf

# vim: syntax=make