~ubuntu-branches/ubuntu/vivid/remake/vivid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** \file implicit.h
 *
 *  \brief header for impilict.c
 */

#ifndef REMAKE_IMPLICIT_H
#define REMAKE_IMPLICIT_H

#include "types.h"
/* For a FILE which has no commands specified, try to figure out some
   from the implicit pattern rules.
   Returns 1 if a suitable implicit rule was found,
   after modifying FILE to contain the appropriate commands and deps,
   or returns 0 if no implicit rule was found.  */
extern int try_implicit_rule (file_t *file, unsigned int depth);
#endif