mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-02-07 04:55:46 +00:00
Initial upstream version git-archimport-id: srivasta@debian.org--2003-primary/make--upstream--3.0--base-0
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:
|
||
*/
|