Blame version.c

Packit 26a39e
/* Record version and build host architecture for GNU make.
Packit 26a39e
Copyright (C) 1988-2016 Free Software Foundation, Inc.
Packit 26a39e
This file is part of GNU Make.
Packit 26a39e
Packit 26a39e
GNU Make is free software; you can redistribute it and/or modify it under the
Packit 26a39e
terms of the GNU General Public License as published by the Free Software
Packit 26a39e
Foundation; either version 3 of the License, or (at your option) any later
Packit 26a39e
version.
Packit 26a39e
Packit 26a39e
GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
Packit 26a39e
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
Packit 26a39e
A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
Packit 26a39e
Packit 26a39e
You should have received a copy of the GNU General Public License along with
Packit 26a39e
this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit 26a39e
Packit 26a39e
/* We use <config.h> instead of "config.h" so that a compilation
Packit 26a39e
   using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
Packit 26a39e
   (which it would do because makeint.h was found in $srcdir).  */
Packit 26a39e
#include <config.h>
Packit 26a39e
Packit 26a39e
#ifndef MAKE_HOST
Packit 26a39e
# define MAKE_HOST "unknown"
Packit 26a39e
#endif
Packit 26a39e
Packit 26a39e
const char *version_string = VERSION;
Packit 26a39e
const char *make_host = MAKE_HOST;
Packit 26a39e

Packit 26a39e
/*
Packit 26a39e
  Local variables:
Packit 26a39e
  version-control: never
Packit 26a39e
  End:
Packit 26a39e
 */