make-dfsg/version.c
Manoj Srivastava dd2321f4b2 Initial upstream version
Initial upstream version


git-archimport-id: srivasta@debian.org--2003-primary/make--upstream--3.0--base-0
2004-02-10 17:14:09 +00:00

17 lines
398 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* 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:
*/