File: implicit.h

package info (click to toggle)
remake 4.1%2Bdbg1.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,424 kB
  • ctags: 3,216
  • sloc: ansic: 32,087; perl: 1,370; sh: 295; ruby: 294; makefile: 288; lisp: 26
file content (17 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (4)
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