diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-02-27 15:48:07 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-02-27 17:09:46 +0100 |
commit | f413decfefcd57d487a979aaacf3583efc9eb9c5 (patch) | |
tree | f42b8f1a3485a1711f325782deb2c216a10578f5 /config_host | |
parent | 960e2ee691f99d516fc8e4fc10f13f2d29a41a8c (diff) |
move generation of udkversion.mk to configure
Change-Id: Id2f047686e2ba3ac2d8242d9b47abad751679759
Diffstat (limited to 'config_host')
-rw-r--r-- | config_host/.gitignore | 1 | ||||
-rw-r--r-- | config_host/config_udkversion.h.in | 2 | ||||
-rw-r--r-- | config_host/udkversion.mk.in | 6 |
3 files changed, 8 insertions, 1 deletions
diff --git a/config_host/.gitignore b/config_host/.gitignore index 9becb5b61647..e62c650e32d8 100644 --- a/config_host/.gitignore +++ b/config_host/.gitignore @@ -1 +1,2 @@ config_*.h +udkversion.mk diff --git a/config_host/config_udkversion.h.in b/config_host/config_udkversion.h.in index ff974e8020ee..00f9bb89e87d 100644 --- a/config_host/config_udkversion.h.in +++ b/config_host/config_udkversion.h.in @@ -1,4 +1,4 @@ -/* +/* UDK version. diff --git a/config_host/udkversion.mk.in b/config_host/udkversion.mk.in new file mode 100644 index 000000000000..7bd445f5fc45 --- /dev/null +++ b/config_host/udkversion.mk.in @@ -0,0 +1,6 @@ +# UDK version number + +UDK_MAJOR=@UDK_MAJOR@ +UDK_MINOR=@UDK_MINOR@ +UDK_MICRO=@UDK_MICRO@ + |