source: trunk/src/kmk/ifcond.c@ 1717

Last change on this file since 1717 was 1715, checked in by bird, 17 years ago

kmk: Started hacking on some useable if conditionals.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 438 bytes
Line 
1#ifdef CONFIG_WITH_IF_CONDITIONALS
2
3#include "make.h"
4#include <assert.h>
5
6#include <glob.h>
7
8#include "dep.h"
9#include "filedef.h"
10#include "job.h"
11#include "commands.h"
12#include "variable.h"
13#include "rule.h"
14#include "debug.h"
15#include "hash.h"
16
17
18
19
20int ifcond_eval(char *line, const struct floc *flocp)
21{
22 error (flocp, _("if conditionals are not implemented yet"));
23
24 return -1;
25}
26
27
28#endif /* CONFIG_WITH_IF_CONDITIONALS */
Note: See TracBrowser for help on using the repository browser.