From bb4dd8289b351fae6b55e303f189127a394a1edd Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Mon, 26 Aug 2013 08:15:55 -0400 Subject: Imported Upstream version 1.51.0 --- tools/build/v2/engine/make.h | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'tools/build/v2/engine/make.h') diff --git a/tools/build/v2/engine/make.h b/tools/build/v2/engine/make.h index b372263e19..e0c7906583 100644 --- a/tools/build/v2/engine/make.h +++ b/tools/build/v2/engine/make.h @@ -8,10 +8,14 @@ * make.h - bring a target up to date, once rules are in place */ +#ifndef MAKE_SW20111118_H +#define MAKE_SW20111118_H + #include "lists.h" +#include "object.h" -int make( int n_targets, const char **targets, int anyhow ); -int make1( TARGET *t ); +int make( LIST * targets, int anyhow ); +int make1( TARGET * t ); typedef struct { int temp; @@ -30,12 +34,14 @@ void make0( TARGET *t, TARGET *p, int depth, /* * Specifies that the target should be updated. */ -void mark_target_for_updating(char *target); +void mark_target_for_updating( OBJECT * target ); /* * Returns the list of all the target previously passed to 'mark_target_for_updating'. */ -LIST *targets_to_update(); +LIST * targets_to_update(); /* * Cleasr/unmarks all targets that are currently marked for update. */ void clear_targets_to_update(); + +#endif -- cgit v1.2.3