mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-24 20:20:35 +00:00
82f0c5495a
* Put the host info in the --version output. * Don't croak if the user forces -jN on submakes.
17 lines
398 B
C
17 lines
398 B
C
/* We use <config.h> instead of "config.h" so that a compilation
|
||
using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
|
||
(which it would do because make.h was found in $srcdir). */
|
||
#include <config.h>
|
||
|
||
#ifndef MAKE_HOST
|
||
# define MAKE_HOST "unknown"
|
||
#endif
|
||
|
||
char *version_string = VERSION;
|
||
char *make_host = MAKE_HOST;
|
||
|
||
/*
|
||
Local variables:
|
||
version-control: never
|
||
End:
|
||
*/
|