/* * $COPYRIGHT$ * * $Id: automake_bogosity.c,v 1.2 2000/05/01 20:52:16 jsquyres Exp $ * * Function: - automake 1.3 requires at least a single PROGRAM in * a directory to correctly generate the LINK macro (which we * need to make libraries). This is promised to be fixed in * automake 1.4, but in the mean time, we need a bogus * noinst_PROGRAM so that LINK will be defined properly, so that * we can make liblam.la. properly. This file will be removed * from the LAM CVS tree and distribution when automake is fixed. */ #include int main(int argc, char* argv[]) { printf("This file is part of the LAM/MPI distribution, but is only here because we need to force automake to do something that it doesn't want to do. See the comment in share/automake_bogosity.c for a further exaplanation.\n"); return 0; }