summaryrefslogtreecommitdiffstats
path: root/rules/pre/canutils.make
blob: d27529b8ade561cb88f7b06a2d97066cf457592f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*-makefile-*-
#
# Copyright (C) 2003, 2010 by Marc Kleine-Budde <kleine-budde@gmx.de>
#           (C) 2008 by Wolfram Sang <w.sang@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

CANUTILS_VERSION	:= $(call remove_quotes,$(PTXCONF_CANUTILS_VERSION))
_version_temp		:= $(subst ., ,$(CANUTILS_VERSION))
CANUTILS_VERSION_MAJOR	:= $(word 1,$(_version_temp))
CANUTILS_VERSION_MINOR	:= $(word 2,$(_version_temp))
CANUTILS_VERSION_MICRO	:= $(word 3,$(_version_temp))

_version_temp		:=

# vim: syntax=make