mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
1e4d965b59
At present two acpi files are built every time since they use a version number from version.h This is not necessary. Make use of the same technique as for the version string, so that they are build only when they change. Signed-off-by: Simon Glass <sjg@chromium.org>
10 lines
258 B
C
10 lines
258 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
#ifndef __VERSION_STRING_H__
|
|
#define __VERSION_STRING_H__
|
|
|
|
extern const char version_string[];
|
|
extern const unsigned short version_num;
|
|
extern const unsigned char version_num_patch;
|
|
|
|
#endif /* __VERSION_STRING_H__ */
|