summaryrefslogtreecommitdiffstats
path: root/rules/host-dtc.make
blob: 60d7aaed8e79f648346e84b1f70a3be6b2c907fa (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
# -*-makefile-*-
# $Id$
#
# Copyright (C) 2007 by Sascha Hauer
#
# 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
#
HOST_PACKAGES-$(PTXCONF_HOST_DTC) += host-dtc

#
# Paths and names
#
HOST_DTC_VERSION	:= v1.1.0
HOST_DTC		:= dtc-$(HOST_DTC_VERSION)
HOST_DTC_SUFFIX		:= tgz
HOST_DTC_URL		:= http://www.jdl.com/software/$(HOST_DTC).$(HOST_DTC_SUFFIX)
HOST_DTC_SOURCE		:= $(SRCDIR)/$(HOST_DTC).$(HOST_DTC_SUFFIX)
HOST_DTC_DIR		:= $(HOST_BUILDDIR)/$(HOST_DTC)

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

host-dtc_get: $(STATEDIR)/host-dtc.get

$(STATEDIR)/host-dtc.get: $(host-dtc_get_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

$(HOST_DTC_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, HOST_DTC)

# ----------------------------------------------------------------------------
# Extract
# ----------------------------------------------------------------------------

host-dtc_extract: $(STATEDIR)/host-dtc.extract

$(STATEDIR)/host-dtc.extract: $(host-dtc_extract_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(HOST_DTC_DIR))
	@$(call extract, HOST_DTC, $(HOST_BUILDDIR))
	@$(call patchin, HOST_DTC, $(HOST_DTC_DIR))
	@$(call touch, $@)

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

host-dtc_prepare: $(STATEDIR)/host-dtc.prepare

HOST_DTC_PATH	:= PATH=$(HOST_PATH)
HOST_DTC_ENV 	:= $(HOST_ENV)

$(STATEDIR)/host-dtc.prepare: $(host-dtc_prepare_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

# ----------------------------------------------------------------------------
# Compile
# ----------------------------------------------------------------------------

host-dtc_compile: $(STATEDIR)/host-dtc.compile

$(STATEDIR)/host-dtc.compile: $(host-dtc_compile_deps_default)
	@$(call targetinfo, $@)
	cd $(HOST_DTC_DIR) && $(HOST_DTC_PATH) $(MAKE) $(PARALLELMFLAGS)
	@$(call touch, $@)

# ----------------------------------------------------------------------------
# Install
# ----------------------------------------------------------------------------

host-dtc_install: $(STATEDIR)/host-dtc.install

$(STATEDIR)/host-dtc.install: $(host-dtc_install_deps_default)
	@$(call targetinfo, $@)
	cp $(HOST_DTC_DIR)/dtc $(PTXCONF_SYSROOT_HOST)/bin/dtc
	@$(call touch, $@)

# ----------------------------------------------------------------------------
# Clean
# ----------------------------------------------------------------------------

host-dtc_clean:
	rm -rf $(STATEDIR)/host-dtc.*
	rm -rf $(HOST_DTC_DIR)

# vim: syntax=make