The Machine Perception Toolbox

[Introduction]- [News]- [Download]- [Screenshots]- [Manual (pdf)]- [Forums]- [API Reference]- [Repository ]

 

Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

make.h

Go to the documentation of this file.
00001 /*
00002  * Copyright 1993, 1995 Christopher Seiwald.
00003  *
00004  * This file is part of Jam - see jam.c for Copyright information.
00005  */
00006 
00007 /*
00008  * make.h - bring a target up to date, once rules are in place
00009  */
00010 
00011 #include "lists.h"
00012 
00013 int make( int n_targets, const char **targets, int anyhow );
00014 int make1( TARGET *t );
00015 
00016 typedef struct {
00017         int     temp;
00018         int     updating;
00019         int     cantfind;
00020         int     cantmake;
00021         int     targets;
00022         int     made;
00023 } COUNTS ;
00024 
00025 
00026 void make0( TARGET *t, TARGET  *p, int depth, 
00027             COUNTS *counts, int anyhow );
00028 
00029 
00030 /*
00031  * Specifies that the target should be updated.
00032  */
00033 void mark_target_for_updating(char *target);
00034 /* 
00035  * Returns the list of all the target previously passed to 'mark_target_for_updating'.
00036  */
00037 LIST *targets_to_update();
00038 /*
00039  * Cleasr/unmarks all targets that are currently marked for update.
00040  */
00041 void clear_targets_to_update();

Generated on Mon Nov 8 17:07:41 2004 for MPT by  doxygen 1.3.9.1