bed3ac8741
- Option was recently added but never released. - Custom commands no longer depend on build.make so we do not need the option. - Rule hashes now take care of rebuilding when rules change so the dependency is not needed.
29 lines
369 B
Plaintext
29 lines
369 B
Plaintext
#include "doc1.h"
|
|
#include "foo.h"
|
|
#include "config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int generated();
|
|
int wrapped();
|
|
|
|
int main ()
|
|
{
|
|
if (generated()*wrapped()*doc() == 3*5*7)
|
|
{
|
|
FILE* fin = fopen(PROJECT_BINARY_DIR "/not_included.h", "r");
|
|
if(fin)
|
|
{
|
|
fclose(fin);
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
return -2;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|