cmake/Tests/MakeClean/check_clean.c.in
Pierre Habouzit 4c630dbbc0 import cmake 2.6.0
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
2008-10-12 18:41:06 +02:00

27 lines
404 B
C

#include <stdio.h>
int main()
{
/* The list of files to check. */
const char* files[] =
{
@CHECK_FILES@
0
};
/* No file should exist. */
const char** f = files;
int result = 0;
for(; *f; ++f)
{
FILE* pf = fopen(*f, "rb");
if(pf)
{
fclose(pf);
fprintf(stderr, "File \"%s\" exists!", *f);
result = 1;
}
}
return result;
}