File: version.c

package info (click to toggle)
make 3.79.1-14
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,224 kB
  • ctags: 1,754
  • sloc: ansic: 23,190; sh: 2,972; perl: 966; makefile: 339
file content (17 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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:
 */